Searched refs:numeric (Results 1 - 25 of 155) sorted by relevance

1234567

/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/fumagic/
H A Drtcore.tcl49 variable cache ; # Cache of fetched and decoded numeric
53 variable numeric -9999 ; # Last recognized number | into the message
72 variable numeric -9999
120 variable numeric
126 %ld $numeric \
127 %d $numeric \
142 variable numeric
147 # fetch the numeric field from the file
148 set numeric [Fetch $offset $size $scan]
152 set numeric [exp
[all...]
/macosx-10.10.1/libutil-38/
H A Drealhostname.c130 goto numeric;
136 goto numeric;
142 goto numeric;
160 goto numeric;
168 goto numeric;
177 numeric:
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Duitercollationiterator.h34 UIterCollationIterator(const CollationData *d, UBool numeric, UCharIterator &ui) argument
35 : CollationIterator(d, numeric), iter(ui) {}
64 FCDUIterCollationIterator(const CollationData *data, UBool numeric, UCharIterator &ui, int32_t startIndex) argument
65 : UIterCollationIterator(data, numeric, ui),
H A Dutf8collationiterator.h33 UTF8CollationIterator(const CollationData *d, UBool numeric, argument
35 : CollationIterator(d, numeric),
79 FCDUTF8CollationIterator(const CollationData *data, UBool numeric, argument
81 : UTF8CollationIterator(data, numeric, s, p, len),
H A Dutf16collationiterator.h34 UTF16CollationIterator(const CollationData *d, UBool numeric, argument
36 : CollationIterator(d, numeric),
85 FCDUTF16CollationIterator(const CollationData *data, UBool numeric, argument
87 : UTF16CollationIterator(data, numeric, s, p, lim),
H A Drulebasedcollator.cpp565 UBool numeric = settings->isNumeric(); local
568 UTF16CollationIterator ci(data, numeric, varTop, varTop, varTop + len);
572 FCDUTF16CollationIterator ci(data, numeric, varTop, varTop, varTop + len);
998 UBool numeric = settings->isNumeric(); local
1001 data->isUnsafeBackward(left[equalPrefixLength], numeric)) ||
1003 data->isUnsafeBackward(right[equalPrefixLength], numeric))) {
1006 data->isUnsafeBackward(left[equalPrefixLength], numeric)) {}
1045 UTF16CollationIterator leftIter(data, numeric,
1047 UTF16CollationIterator rightIter(data, numeric,
1051 FCDUTF16CollationIterator leftIter(data, numeric,
1117 UBool numeric = settings->isNumeric(); local
1214 UBool numeric = settings->isNumeric(); local
1331 UBool numeric = settings->isNumeric(); local
1433 UBool numeric = settings->isNumeric(); local
1491 UBool numeric = settings->isNumeric(); local
[all...]
H A Dcollationdata.h62 UBool isUnsafeBackward(UChar32 c, UBool numeric) const {
63 return unsafeBackwardSet->contains(c) || (numeric && isDigit(c));
166 /** The single-byte primary weight (xx000000) for numeric collation. */
/macosx-10.10.1/ruby-106/ruby/test/csv/
H A Dtest_data_converters.rb113 assert_nothing_raised(Exception) { @parser.convert(:numeric) }
143 assert_nothing_raised(Exception) { @parser.convert(:numeric) }
180 CSV.parse_line(@data, converters: :numeric) )
186 CSV.parse_line(@data, converters: [:numeric, @custom]) )
197 converters: [:numeric, @custom],
213 converters: :numeric,
224 converters: :numeric,
237 converters: :numeric,
251 converters: :numeric,
/macosx-10.10.1/bc-21/bc/dc/
H A DMakefile.am4 dc_SOURCES = dc.c misc.c eval.c stack.c array.c numeric.c string.c
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/tkextlib/bwidget/
H A Ddemo.rb90 DemoVar.prgindic.numeric += 1
119 DemoVar.prgindic.numeric += 1
145 DemoVar.prgindic.numeric += 1
163 DemoVar.prgindic.numeric += 1
167 DemoVar.prgindic.numeric += 1
171 DemoVar.prgindic.numeric += 1
175 DemoVar.prgindic.numeric += 1
179 DemoVar.prgindic.numeric += 1
183 DemoVar.prgindic.numeric += 1
187 DemoVar.prgindic.numeric
[all...]
/macosx-10.10.1/curl-83.1.2/curl/
H A Dmaketgz43 numeric=`perl -e 'printf("%02x%02x%02x\n", '"$major, $minor, $patch);"`
53 -e 's/^#define LIBCURL_VERSION_NUM .*/#define LIBCURL_VERSION_NUM 0x'$numeric'/g' \
76 echo "libcurl numerical $numeric"
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/tests/data/
H A Dslapd-valsort.conf48 valsort-attr mailPreferenceOption ou=users,o=valsort numeric-ascend
/macosx-10.10.1/emacs-93/emacs/lisp/emulation/
H A Dkeypad.el31 ;; With the following setup, the keypad can be used for numeric data
32 ;; entry when NumLock is off, and to give numeric prefix arguments to
36 ;; keypad-numlock-setup => Prefix numeric args
74 ;; numeric keys when NumLock is either on or off, but the decimal key
105 When selecting the plain numeric keypad setup, the character returned by the
113 :type '(choice (const :tag "Plain numeric keypad" numeric)
128 When selecting the plain numeric keypad setup, the character returned by the
136 :type '(choice (const :tag "Plain numeric keypad" numeric)
[all...]
/macosx-10.10.1/ksh-23/ksh/src/lib/libcmd/
H A Dexpr.c141 #define numeric(np) ((np)->type&T_NUM) macro
354 if (!numeric(np) || !numeric(&rp))
355 error(ERROR_exit(2),"non-numeric argument");
383 if (!numeric(np) || !numeric(&rp))
384 error(ERROR_exit(2),"non-numeric argument");
405 if (numeric(&rp) && numeric(np))
469 if ((numeric(
[all...]
/macosx-10.10.1/ruby-106/ruby/test/optparse/
H A Dtest_acceptable.rb9 @opt.def_option("--numeric VAL", Numeric) { |v| @numeric = v }
15 @opt.def_option("--decimal-numeric VAL",
78 assert_equal(%w"", no_error {@opt.parse!(%w"--numeric 0")})
79 assert_equal(0, @numeric)
81 assert_equal(%w"", no_error {@opt.parse!(%w"--numeric 0/1")})
82 assert_equal(0, @numeric)
84 assert_equal(%w"", no_error {@opt.parse!(%w"--numeric 1/2")})
85 assert_equal(Rational(1, 2), @numeric)
87 assert_equal(%w"", no_error {@opt.parse!(%w"--numeric 1.
[all...]
/macosx-10.10.1/bind9-45.101/bind9/unit/atf-src/atf-report/
H A Dtests-results.css96 table.summary td.numeric p {
100 table.summary td.numeric-error p {
105 table.summary td.numeric-warning p {
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/tkextlib/vu/
H A Ddial_demo.rb79 update = TkTimer.new(proc{v_speed.numeric}, -1, proc{
81 v_volume.numeric = volume[:from]
83 v_volume.numeric += volume[:resolution]
H A Dvu_demo.rb33 if (rand() - 0.5 + speed.numeric * 3) > 0
/macosx-10.10.1/llvmCore-3425.0.34/examples/OCaml-Kaleidoscope/Chapter2/
H A Dast.ml7 (* variant for numeric literals like "1.0". *)
/macosx-10.10.1/llvmCore-3425.0.34/examples/OCaml-Kaleidoscope/Chapter3/
H A Dast.ml7 (* variant for numeric literals like "1.0". *)
/macosx-10.10.1/llvmCore-3425.0.34/examples/OCaml-Kaleidoscope/Chapter4/
H A Dast.ml7 (* variant for numeric literals like "1.0". *)
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/
H A Dbinding_sample.rb73 v.numeric += 1
82 v.numeric += 1
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/tkextlib/iwidgets/sample/
H A Dentryfield-1.rb18 :validate=>:numeric, :width=>12)
H A Dentryfield-2.rb24 :validate=>:numeric, :width=>12)
H A Dentryfield-3.rb20 :validate=>:numeric, :width=>12)

Completed in 167 milliseconds

1234567