HomeSort by relevance Sort by last modified time
    Searched full:decimal (Results 26 - 50 of 2089) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/iptables/extensions/
libxt_DSCP.man 6 Set the DSCP field to a numerical value (can be decimal or hex)
libxt_dscp.man 5 Match against a numeric (decimal or hex) value [0-63].
  /frameworks/compile/slang/tests/F_bad_version_pragma/
stderr.txt.expect 4 bad_version_pragma.rs:4:18: error: invalid digit 'a' in decimal constant
  /packages/apps/Calculator/res/values/
strings.xml 28 <!-- Decimal separator (e.g. "1.23"). [CHAR_LIMIT=1] -->
31 <!-- Decimal representation of zero (e.g. "0", "10", "1.0", "1e0"). [CHAR_LIMIT=1] -->
33 <!-- Decimal representation of one (e.g. "1", "11", "1.1", "1e1"). [CHAR_LIMIT=1] -->
35 <!-- Decimal representation of two (e.g. "2", "22", "2.2", "2e2"). [CHAR_LIMIT=1] -->
37 <!-- Decimal representation of three (e.g. "3", "33", "3.3", "3e3"). [CHAR_LIMIT=1] -->
39 <!-- Decimal representation of four (e.g. "4", "44", "4.4", "4e4"). [CHAR_LIMIT=1] -->
41 <!-- Decimal representation of five (e.g. "5", "55", "5.5", "5e5"). [CHAR_LIMIT=1] -->
43 <!-- Decimal representation of six (e.g. "6", "66", "6.6", "6e6"). [CHAR_LIMIT=1] -->
45 <!-- Decimal representation of seven (e.g. "7", "77", "7.7", "7e7"). [CHAR_LIMIT=1] -->
47 <!-- Decimal representation of eight (e.g. "8", "88", "8.8", "8e8"). [CHAR_LIMIT=1] --
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/Compiler/
Lexicon.py 26 decimal = Rep1(digit)
28 exponent = Any("Ee") + Opt(Any("+-")) + decimal
29 decimal_fract = (decimal + dot + Opt(decimal)) | (dot + decimal)
32 intconst = decimal | (Str("0") + ((Any("Xx") + Rep1(hexdigit)) |
37 fltconst = (decimal_fract + Opt(exponent)) | (decimal + exponent)
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
InputType.cpp 201 void InputType::setValueAsDecimal(const Decimal& newValue, TextFieldEventBehavior eventBehavior, ExceptionState&) const
252 const Decimal numericValue = parseToNumberOrNaN(value);
264 const Decimal numericValue = parseToNumberOrNaN(value);
271 Decimal InputType::defaultValueForStepUp() const
291 const Decimal numericValue = parseToNumberOrNaN(value);
304 const Decimal numericValue = parseToNumberOrNaN(value);
317 const Decimal numericValue = parseToNumberOrNaN(value);
330 String InputType::rangeOverflowText(const Decimal&) const
336 String InputType::rangeUnderflowText(const Decimal&) const
376 const Decimal numericValue = parseToNumberOrNaN(value)
    [all...]
BaseDateAndTimeInputType.h 45 virtual Decimal parseToNumber(const String&, const Decimal&) const OVERRIDE;
52 virtual String serialize(const Decimal&) const OVERRIDE;
66 virtual String rangeOverflowText(const Decimal& maximum) const OVERRIDE;
67 virtual String rangeUnderflowText(const Decimal& minimum) const OVERRIDE;
68 virtual Decimal defaultValueForStepUp() const OVERRIDE;
NumberInputType.cpp 75 static RealNumberRenderSize calculateRenderSize(const Decimal& value)
128 void NumberInputType::setValueAsDecimal(const Decimal& newValue, TextFieldEventBehavior eventBehavior, ExceptionState& exceptionState) const
147 const Decimal doubleMax = Decimal::fromDouble(std::numeric_limits<double>::max());
159 const Decimal minimum = parseToDecimalForNumberType(element().fastGetAttribute(minAttr));
163 const Decimal maximum = parseToDecimalForNumberType(element().fastGetAttribute(maxAttr));
167 const Decimal step = parseToDecimalForNumberType(stepString, 1);
189 Decimal NumberInputType::parseToNumber(const String& src, const Decimal& defaultValue) const
194 String NumberInputType::serialize(const Decimal& value) cons
    [all...]
MonthInputType.cpp 87 Decimal MonthInputType::defaultValueForStepUp() const
93 return Decimal::fromDouble(months);
100 return InputType::createStepRange(anyStepHandling, Decimal::fromDouble(monthDefaultStepBase), Decimal::fromDouble(DateComponents::minimumMonth()), Decimal::fromDouble(DateComponents::maximumMonth()), stepDescription);
103 Decimal MonthInputType::parseToNumber(const String& src, const Decimal& defaultValue) const
110 return Decimal::fromDouble(months);
  /external/chromium_org/content/public/common/
geoposition.h 40 // Latitude in decimal degrees north (WGS84 coordinate frame).
42 // Longitude in decimal degrees west (WGS84 coordinate frame).
50 // Heading in decimal degrees clockwise from true north.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
ar.h 39 char ar_date[12]; /* File date, decimal seconds since Epoch. */
40 char ar_uid[6], ar_gid[6]; /* User and group IDs, in ASCII decimal. */
42 char ar_size[10]; /* File size, in ASCII decimal. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
ar.h 39 char ar_date[12]; /* File date, decimal seconds since Epoch. */
40 char ar_uid[6], ar_gid[6]; /* User and group IDs, in ASCII decimal. */
42 char ar_size[10]; /* File size, in ASCII decimal. */
  /cts/tests/tests/view/res/layout/
inflater_layout.xml 39 android:numeric="decimal"/>
49 android:numeric="integer|decimal"/>
54 android:numeric="signed|decimal"/>
59 android:numeric="signed|integer|decimal"/>
  /external/chromium_org/third_party/freetype/src/psaux/
psconv.c 38 /* digits (both decimal and non-decimal) into numbers. */
200 FT_Long decimal = 0; local
235 /* read the decimal part */
253 if ( decimal < 0xCCCCCCCL )
255 decimal = decimal * 10 + c;
290 if ( !integral && !decimal )
304 if ( decimal >= 0xCCCCCCCL )
311 decimal *= 10
    [all...]
  /external/freetype/src/psaux/
psconv.c 38 /* digits (both decimal and non-decimal) into numbers. */
200 FT_Long decimal = 0; local
235 /* read the decimal part */
253 if ( decimal < 0xCCCCCCCL )
255 decimal = decimal * 10 + c;
290 if ( !integral && !decimal )
304 if ( decimal >= 0xCCCCCCCL )
311 decimal *= 10
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t015calc.g 37 | n=DECIMAL {result = parseFloat($n.text);}
45 DECIMAL: DIGIT+ '.' DIGIT+;
  /external/antlr/antlr-3.4/runtime/Python/tests/
t015calc.g 41 | n=DECIMAL {result = float($n.text)}
49 DECIMAL: DIGIT+ '.' DIGIT+;
  /external/chromium_org/base/third_party/dmg_fp/
dmg_fp.h 10 // Return a nearest machine number to the input decimal
24 // Store the closest decimal approximation to x in b (null terminated).
  /external/chromium_org/chrome/browser/chromeos/geolocation/
geoposition.h 38 // Latitude in decimal degrees north.
41 // Longitude in decimal degrees west.
  /external/chromium_org/third_party/icu/source/test/intltest/
dcfmtest.h 10 // Data driven decimal formatter test.
35 // The following functions are internal to the decimal format tests.
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
normalize_utf8.h 25 // Put a UTF-8 string in ASCII digits: All decimal digits (Nd) replaced by
37 // Not a decimal digit.
  /external/icu/icu4c/source/test/intltest/
dcfmtest.h 10 // Data driven decimal formatter test.
35 // The following functions are internal to the decimal format tests.
  /frameworks/av/media/libeffects/lvm/lib/Common/lib/
ScalarArithmetic.h 44 * (04->01) = decimal part
48 * (15->01) = decimal part
  /external/chromium_org/third_party/icu/source/i18n/
digitlst.h 36 // Decimal digits in a 64-bit int
74 * Digit List is actually a Decimal Floating Point number.
76 * decimal number from the decNumber library.
81 * The change to decNumber enables support for big decimal numbers, and
82 * allows rounding computations to be done directly in decimal, avoiding
92 * positive/negative, grouping, decimal point, currency, and so on.
103 * decimal point, by 10^exponent.
112 * DigitList, decimal point is before the most significant.
113 * decNumber, decimal point is after the least signficant digit.
161 * you hit the decimal point, you set myDigitList.fDecimalAt = myDigitList.fCount
    [all...]
  /external/icu/icu4c/source/i18n/
digitlst.h 36 // Decimal digits in a 64-bit int
74 * Digit List is actually a Decimal Floating Point number.
76 * decimal number from the decNumber library.
81 * The change to decNumber enables support for big decimal numbers, and
82 * allows rounding computations to be done directly in decimal, avoiding
92 * positive/negative, grouping, decimal point, currency, and so on.
103 * decimal point, by 10^exponent.
112 * DigitList, decimal point is before the most significant.
113 * decNumber, decimal point is after the least signficant digit.
161 * you hit the decimal point, you set myDigitList.fDecimalAt = myDigitList.fCount
    [all...]

Completed in 1665 milliseconds

12 3 4 5 6 7 8 91011>>