Searched +refs:default +refs:value (Results 151 - 175 of 712) sorted by relevance

1234567891011>>

/macosx-10.10/vim-55/runtime/syntax/
H A Dasm.vim42 " since the value of 0-7 octal is the same as 0-7 decimal,
54 " I have commented out the ARM comment marker "@" by default as I think more
73 " Define the default highlighting.
84 " The default methods for highlighting. Can be overridden later
H A Djproperties.vim12 " Set a value for the sync block that we use to find long continuation lines
13 " in properties; the value is already large - if you have larger continuation
15 " slow, reduce the value of jproperties_lines.
22 " Most properties files assign values with "id=value" or "id:value". But,
23 " strictly, the Java properties parser also allows "id value", "id", and
24 " even more bizarrely "=value", ":value", " value", and so on. These latter
27 " we take special efforts to pick out only "id=value" an
[all...]
/macosx-10.10/CPANInternal-159.1/Readonly-1.03/
H A DReadonly.pm43 $MODIFY = 'Modification of a read-only value attempted';
62 Readonly::croak "No value specified for readonly scalar" unless @_;
65 my $value = shift;
66 return bless \$value, $class;
240 # If only one value, and it's a hashref, expand it
259 my $value = $_[1];
262 foreach ($value)
272 $_[0] = $value;
278 my $tieobj = eval {tie $_[0], 'Readonly::Scalar', $value};
316 # If only one value, an
[all...]
/macosx-10.10/ruby-106/ruby/lib/rubygems/commands/
H A Dupdate_command.rb26 OptionParser.accept Gem::Version do |value|
27 Gem::Version.new value
29 value
33 'Update the RubyGems system software') do |value, options|
34 value = true unless value
36 options[:system] = value
88 def update_gem name, version = Gem::Requirement.default
/macosx-10.10/CPANInternal-159.1/Log-Log4perl-1.40/lib/Log/Log4perl/JavaMap/
H A DConsoleAppender.pm12 if (my $t = $data->{Target}{value}) {
18 die "ERROR: illegal value '$t' for $data->{value}.Target' in appender $appender_name\n";
20 }elsif (defined $data->{stderr}{value}){
21 $stderr = $data->{stderr}{value};
46 Target (System.out, System.err, default is System.out)
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/tiff/
H A Dtiff.tcl181 foreach {tag format value} $entry {
182 set ifd($tag) [_unformat $byteOrder $tag $format $value]
197 # dummy data, to get ifd size, real value inserted later
382 # takes fh at start of dir entry and returns tag and value(s)
393 set value [read $fh 4]
399 _scan $byteOrder $value i value
400 seek $fh $value start
401 set value [read $fh $size]
404 return [list $tag [_format $byteOrder $value
[all...]
/macosx-10.10/emacs-93/emacs/lisp/gnus/
H A Dmml.el49 (defvar message-default-charset)
140 (defvar mml-generate-default-type "text/plain"
143 equals the value and there's no parameter (e.g. charset, format, etc.)
144 and `mml-insert-mime-headers-always' is nil. The value will be bound
146 part. This is for the internal use, you should never modify the value.")
427 (or (mm-default-file-encoding filename)
466 (mml-generate-default-type "text/plain"))
561 (or (mm-default-file-encoding name)
573 (mml-generate-default-type (if (equal type "digest")
579 ;; No specific handler. Use default on
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/report/
H A Dreport.tcl114 default {
225 # 1. Arguments without default may not follow an argument with a
226 # default. The special "args" is no exception!
238 "Found argument without default after arguments having defaults"
245 default {
246 error "Illegal length of value \"$v\""
368 # Determine the name of the first formal parameter which did not get a value.
370 return -code error "no value given for parameter \"$firstmissing\" to style \"$styleName\""
410 # know that there are no arguments having a default value
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/doctools/
H A Ddoctools.tcl155 * const - semantic markup - constant value\n\
253 # Retrieve the current value of a particular option
257 # option Name of the option whose value we are asking for.
260 # The value of the option
277 # The value of one particular option if called with a single argument.
303 # Query the value of one particular option.
326 default {
339 foreach {option value} $args {
344 set file $value
345 set mfile $value
[all...]
H A Ddocidx.tcl204 # Retrieve the current value of a particular option
208 # option Name of the option whose value we are asking for.
211 # The value of the option
228 # The value of one particular option if called with a single argument.
243 # Query the value of one particular option.
254 default {
267 foreach {option value} $args {
271 set file $value
275 set fmtfile [LookupFormat $name $value]
278 set format $value
[all...]
H A Ddoctoc.tcl204 # Retrieve the current value of a particular option
208 # option Name of the option whose value we are asking for.
211 # The value of the option
228 # The value of one particular option if called with a single argument.
243 # Query the value of one particular option.
254 default {
267 foreach {option value} $args {
271 set file $value
275 set fmtfile [LookupFormat $name $value]
278 set format $value
[all...]
/macosx-10.10/tcl-105/tcl_ext/tclsoap/tclsoap/
H A Dbeep.tcl71 proc ::SOAP::Transport::beep::method:configure {procVarName opt value} {
79 set options($opt) $value
88 set procvar([string trimleft $opt -]) $value
90 default {
135 # when the RFC issues, update the default port number...
224 default {
263 default {
426 default {
479 default {
H A DSOAP.tcl135 # must be one of log::levels. The default is 'warning'.
283 foreach {opt value} $args {
285 -rpcprot* { set procvar(rpcprotocol) $value }
286 -uri { set procvar(uri) $value }
287 -proxy { set procvar(proxy) $value }
288 -param* { set procvar(params) $value }
289 -trans* { set procvar(transport) $value }
290 -name { set procvar(name) $value }
291 -action { set procvar(action) $value }
292 -schema* { set procvar(schemas) $value }
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/Getopt/
H A DMixed.pm77 $ignoreCase = 1; # Ignore case by default
78 $optionStart = "-"; # Dash is the default option starter
81 # with no whitespace, it is the desired value for $optionStart:
187 # $value: The text appended to the option (undef if no text)
192 # The value of the option's argument
196 my ($i,$value,$option,$type) = @_;
199 if (not $type and defined $value);
203 $value = splice(@ARGV,$i,1) unless defined $value;
205 unless defined $value;
[all...]
/macosx-10.10/llvmCore-3425.0.34/utils/
H A Dllvm-compilers-check121 default=False,
123 " [default: %default]"))
125 help=("Top-level source directory [default: %default]"))
127 help=("Build types to run [default: %default]"))
128 parser.add_option("--cc", default=find_executable("cc"),
129 help=("The C compiler to use [default: %default]"))
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/jpeg/
H A Djpeg.tcl106 # 5. INT [1] value
108 # The 'value is interpreted dependent on the values of tag, format,
115 # Value is offset to the actual value.
117 # Value is the actual value.
318 # takes key-value pairs returned by getExif and converts their values into
454 set value [string range $data $i [expr {$i + 3}]]
456 _scan $byteOrder $value i next
467 _scan $byteOrder $value i value
468 #puts "$value"
[all...]
/macosx-10.10/cups-408/cups/everywhere/
H A Dipp-tests.test60 # Test that a request-id value of 0 is not accepted.
64 NAME "I-1. RFC 2911 section 3.1.1: Bad request-id value 0"
171 NAME "I-9. Get-Printer-Attributes Operation (default)"
206 EXPECT copies-default OF-TYPE integer IN-GROUP printer-attributes-tag COUNT 1 WITH-VALUE >0
209 EXPECT document-format-default OF-TYPE mimeMediaType IN-GROUP printer-attributes-tag COUNT 1
217 EXPECT feed-orientation-default OF-TYPE keyword IN-GROUP printer-attributes-tag COUNT 1 IF-DEFINED HAVE_FEED_ORIENTATION
220 EXPECT finishings-default OF-TYPE enum IN-GROUP printer-attributes-tag IF-DEFINED HAVE_FINISHINGS
224 EXPECT identify-actions-default OF-TYPE keyword IN-GROUP printer-attributes-tag WITH-VALUE "/^(display|flash|sound|speak)$/"
232 EXPECT job-account-id-default OF-TYPE name|no-value I
[all...]
/macosx-10.10/CPANInternal-159.1/JSON-XS-3.01/bin/
H A Djson_xs16 The default input format is C<json> and the default output format is
39 =item storable - a L<Storable> frozen value
75 =item storable - a L<Storable> frozen value in network format
/macosx-10.10/emacs-93/emacs/lisp/term/
H A Dw32-win.el118 default-file-name-coding-system)))
151 "Handle SWITCH of the form \"-switch value\" or \"-switch\"."
155 default-frame-alist))))
162 default-frame-alist))))
193 (setq default-frame-alist
194 (append default-frame-alist
1104 ;; Setup the default fontset.
1105 (setup-default-fontset)
1111 ;; from initial-frame-alist, default-frame-alist, or X resource.
1113 ;; should be already in default
[all...]
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/modules/plotchart/
H A Dplotscada.tcl42 ScadaScaling $w default [list $pxmin $pymax $pxmax $pymin] \
90 set scada_object($w,$objname,scaling) default
93 foreach {key value} $args {
96 set scada_object($w,$objname,scaling) $value
99 set scada_object($w,$objname,text) $value
101 default {
102 lappend options $key $value
124 default {
/macosx-10.10/apache-793/httpd/support/
H A Ddbmmanage.in35 where enc is -d for crypt encryption (default except on Win32, Netware)
36 -m for MD5 encryption (default on Win32, Netware)
46 groups or comment of - for update command clears the existing value
47 groups or comment of - for add and adduser commands is the empty value
272 my $value = getpass "New password:";
273 die "They don't match, sorry.\n" unless getpass("Re-type new password:") eq $value;
274 $crypted_pwd = cryptpw $value;
/macosx-10.10/emacs-93/emacs/lisp/
H A Dcus-edit.el40 ;; 0. The current value.
42 ;; This is the value of the option as seen by "the rest of Emacs".
44 ;; Usually extracted by 'default-value', but can be extracted with
46 ;; property. Similarly, set-default (or the 'custom-set' property)
49 ;; 1. The widget value.
51 ;; This is the value shown in the widget in a customize buffer.
53 ;; 2. The customized value.
55 ;; This is the last value given to the option through customize.
57 ;; It is stored in the 'customized-value' propert
[all...]
H A Dfringe.el44 ;; Define the built-in fringe bitmaps and setup default mappings
65 (setq-default fringe-indicator-alist
79 (setq-default fringe-cursor-alist
96 (defun set-fringe-mode-1 (ignore value)
100 (set-fringe-mode value))
102 (defun set-fringe-mode (value)
103 "Set `fringe-mode' to VALUE and put the new value into effect.
105 (setq fringe-mode value)
107 ;; Apply it to default-frame-alist.
108 (let ((parameter (assq 'left-fringe default
[all...]
/macosx-10.10/tcl-105/tk/tk/library/demos/
H A Dtcolor22 # color - A string giving the current color value
51 -value rgb -underline 0 -command {changeColorSpace rgb}
53 -value cmy -underline 0 -command {changeColorSpace cmy}
55 -value hsb -underline 0 -command {changeColorSpace hsb}
58 -value 1 -underline 0
60 -value 0 -underline 0
110 # typing in a color value.
133 label .sample.value -textvariable color -width 13 -font {Courier 12}
135 pack .sample.value -side bottom -pady .25c
176 # a change in the color space and after a named color value ha
[all...]
/macosx-10.10/tcl-105/tk84/tk/library/demos/
H A Dtcolor21 # color - A string giving the current color value
54 -value rgb -underline 0 -command {changeColorSpace rgb}
56 -value cmy -underline 0 -command {changeColorSpace cmy}
58 -value hsb -underline 0 -command {changeColorSpace hsb}
61 -value 1 -underline 0
63 -value 0 -underline 0
115 # typing in a color value.
139 label .sample.value -textvariable color -width 13 -font {Courier 12}
141 pack .sample.value -side bottom -pady .25c
182 # a change in the color space and after a named color value ha
[all...]

Completed in 172 milliseconds

1234567891011>>