Searched +refs:custom +refs:comment +refs:tag (Results 1 - 14 of 14) sorted by relevance

/macosx-10.9.5/emacs-92/emacs/lisp/
H A Dcus-edit.el31 ;; See `custom.el'.
33 ;; No commands should have names starting with `custom-' because
45 ;; different means if the option symbol has the 'custom-get'
46 ;; property. Similarly, set-default (or the 'custom-set' property)
145 (defvar custom-versions-load-alist) ; from cus-load
156 (put 'custom-define-hook 'custom-type 'hook)
157 (put 'custom-define-hook 'standard-value '(nil))
158 (custom-add-to-group 'customize 'custom
2165 (define-widget 'custom 'default function
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/jpeg/
H A Djpeg.tcl39 # BYTE [N-2] Segment Data, interpreted dependent on tag.
51 # Note: Multiple comment segments are allowed.
103 # 2. SHORT [1] tag = exif key
108 # The 'value is interpreted dependent on the values of tag, format,
208 # add a new comment to the file
209 proc ::jpeg::addComment {file comment args} {
215 # seek back to the SoF and write comment(s) segment
217 foreach x [linsert $args 0 $comment] {
226 proc ::jpeg::replaceComment {file comment} {
229 eval [list addComment $file] [lreplace $com 0 0 $comment]
[all...]
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dant.vim53 syn keyword antElement display chown classconstants classes classfileset classpath commandline comment
55 syn keyword antElement display copyfile coveragepath csc custom cvs cvschangelog cvspass cvstagdiff cvsversion
81 syn keyword antElement display syspropertyset tabstospaces tag taglet tailfilter tar tarfileset target
H A Dvim.vim29 syn keyword vimOption contained akm anti arshape awa backupskip bex bioskey browsedir buftype cedit cindent clipboard cole complete conskey crb cscopeverbose cuc deco dictionary directory ed encoding errorfile exrc fdls fencs fileformats fmr foldlevel foldtext fsync gfs gtl guioptions hf hk hlsearch imak ims indentexpr is isp keywordprg lazyredraw lispwords ls makeef maxmapdepth mfd mmd modified mousemodel msm numberwidth operatorfunc pastetoggle pexpr pmbfn printexpr pt readonly ri rs sb scrollbind secure shcf shelltemp shortname shq sm so spellfile spr st sts swapsync synmaxcol tag tal tenc textmode timeout tl tpm ttimeoutlen ttymouse udf undoreload vbs vi vop wcm whichwrap wildmenu winfixheight wiv wop writebackup
202 syn keyword vimUserAttrbCmplt contained augroup buffer command dir environment event expression file function help highlight mapping menu option shellcmd something tag tag_listfiles var
203 syn keyword vimUserAttrbCmplt contained custom customlist nextgroup=vimUserAttrbCmpltFunc,vimUserCmdError
207 syn match vimUserAttrbCmplt contained "custom,\u\w*"
286 " Set command and associated set-options (vimOptions) with comment {{{2
/macosx-10.9.5/vim-53/runtime/macros/
H A Dmatchit.vim35 " TODO: Add a level of indirection, so that custom % scripts can use my
247 let skip = 's:comment\|string'
318 " a:matchline = "123<tag>12" or "123</tag>12"
319 " then extract "tag" from a:matchline and return "<tag>:</tag>" .
626 " Jump to the nearest unmatched "(" or "if" or "<tag>" if a:spflag == "bW"
627 " or the nearest unmatched "</tag>" or "endif" or ")" if a:spflag == "W".
694 let skip = 's:comment\|strin
[all...]
/macosx-10.9.5/CPANInternal-140/Log-Log4perl-1.40/lib/Log/
H A DLog4perl.pm915 (DEBUG) through. But after this check, Log4perl will eventually apply custom
918 impossible to know what a custom filter does with a message without
1283 Logging comes with a price tag. C<Log::Log4perl> has been optimized
2042 First off, let me tell you that creating custom levels is heavily
2049 Log4perl provides a nice way to create custom levels via the
2073 their appenders are used, you may add mappings for custom levels as well:
2078 For example, if your new custom "NOTIFY" level is supposed to map
2365 use the C<:resurrect> tag to have Log4perl resurrect those burried
2380 In environments lacking Log::Log4perl, just comment out the first line
2390 because everything's a regular comment no
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/progmodes/
H A Dcperl-mode.el77 (require 'custom)
98 (or (fboundp 'custom-declare-variable)
101 (or (and (fboundp 'custom-declare-variable)
136 (defmacro cperl-etags-snarf-tag (file line)
140 (defmacro cperl-etags-snarf-tag (file line)
141 (` (etags-snarf-tag))))
143 (defmacro cperl-etags-goto-tag-location (elt)
152 (defmacro cperl-etags-goto-tag-location (elt)
153 (` (etags-goto-tag-location (, elt))))))
196 :link '(custom
[all...]
/macosx-10.9.5/CPANInternal-140/Log-Log4perl/lib/Log/
H A DLog4perl.pm1076 Logging comes with a price tag. C<Log::Log4perl> has been optimized
1793 First off, let me tell you that creating custom levels is heavily
1800 Log4perl provides a nice way to create custom levels via the
2108 use the C<:resurrect> tag to have Log4perl resurrect those burried
2123 In environments lacking Log::Log4perl, just comment out the first line
2133 because everything's a regular comment now. Alternatively, put the
2134 magic Log::Log4perl comment resurrection line into your shell's
2443 also a special tag for Log4perl that suppresses the second message:
/macosx-10.9.5/CPANInternal-140/SOAP-Lite-0.715/lib/SOAP/
H A DLite.pm363 # their literal form only when used as markup delimiters, or within a comment,
1236 # and do not crete a wrapper array tag.
1454 sub tag { subroutine
1455 my ($self, $tag, $attrs, @values) = @_;
1465 die "Element '$tag' can't be allowed in valid XML message. Died."
1466 if $tag !~ /^$SOAP::Constants::NSMASK$/o;
1468 warn "Element '$tag' uses the reserved prefix 'XML' (in any case)"
1469 if $tag !~ /^(?![Xx][Mm][Ll])/;
1490 return sprintf("$prolog$indent<%s%s>%s%s</%s>$epilog",$tag,$tagattrs,$value,($value =~ /^\s*</ ? $indent : ""),$tag);
[all...]
/macosx-10.9.5/CPANInternal-140/SOAP-Lite_new/lib/SOAP/
H A DLite.pm364 # their literal form only when used as markup delimiters, or within a comment,
1176 # and do not crete a wrapper array tag.
1207 # and do not crete a wrapper array tag.
1367 sub tag { subroutine
1368 my ($self, $tag, $attrs, @values) = @_;
1376 die "Element '$tag' can't be allowed in valid XML message. Died."
1377 if $tag !~ /^(?![xX][mM][lL])$SOAP::Constants::NSMASK$/o;
1398 return sprintf("$prolog$indent<%s%s>%s%s</%s>$epilog",$tag,$tagattrs,$value,($value =~ /^\s*</ ? $indent : ""),$tag);
1401 return sprintf("$prolog$indent<%s%s />$epilog$indent",$tag,
[all...]
/macosx-10.9.5/CPANInternal-140/SOAP-Lite-0.69/lib/OldDocs/SOAP/
H A DLite.pm210 Supports custom serialization.
214 Provides exception transport with custom exceptions
647 One more comment. One case when SOAP::Lite will change something that
1035 to the whole header and second to the headers inside the 'Header' tag:
1280 ->faultactor('http://www.soaplite.com/custom');
1808 In addition see comment about default incoding in .NET Web Services below.
/macosx-10.9.5/CPANInternal-140/SOAP-Lite_new/lib/OldDocs/SOAP/
H A DLite.pm210 Supports custom serialization.
214 Provides exception transport with custom exceptions
647 One more comment. One case when SOAP::Lite will change something that
1035 to the whole header and second to the headers inside the 'Header' tag:
1280 ->faultactor('http://www.soaplite.com/custom');
1808 In addition see comment about default encoding in .NET Web Services below.
/macosx-10.9.5/CPANInternal-140/SOAP-Lite-0.69/lib/SOAP/
H A DLite.pm436 # their literal form only when used as markup delimiters, or within a comment,
1195 # and do not crete a wrapper array tag.
1346 sub tag { subroutine
1348 my($tag, $attrs, @values) = @_;
1356 die "Element '$tag' can't be allowed in valid XML message. Died."
1357 if $tag !~ /^(?![xX][mM][lL])$SOAP::Constants::NSMASK$/o;
1375 return sprintf("$prolog$indent<%s%s>%s%s</%s>$epilog",$tag,$tagattrs,$value,($value =~ /^\s*</ ? $indent : ""),$tag);
1377 return sprintf("$prolog$indent<%s%s />$epilog$indent",$tag,$tagattrs);
1387 return $self->tag(
[all...]
/macosx-10.9.5/CPANInternal-140/Perl-Tidy-20121207/lib/Perl/
H A DTidy.pm285 # ',' character is a token, and so is an entire side comment. It handles
1616 $add_option->( 'closing-side-comment-else-flag', 'csce', '=i' );
1617 $add_option->( 'closing-side-comment-interval', 'csci', '=i' );
1618 $add_option->( 'closing-side-comment-list', 'cscl', '=s' );
1619 $add_option->( 'closing-side-comment-maximum-text', 'csct', '=i' );
1620 $add_option->( 'closing-side-comment-prefix', 'cscp', '=s' );
1621 $add_option->( 'closing-side-comment-warnings', 'cscw', '!' );
1630 $add_option->( 'fixed-position-side-comment', 'fpsc', '=i' );
1631 $add_option->( 'minimum-space-to-comment', 'msc', '=i' );
1634 $add_option->( 'static-block-comment
[all...]

Completed in 180 milliseconds