HomeSort by relevance Sort by last modified time
    Searched defs:decimal (Results 1 - 20 of 20) sorted by null

  /external/chromium/third_party/icu/public/i18n/unicode/
dtptngen.h 323 * The decimal value is used in formatting fractions of seconds. If the
327 * the decimal string is ",". Then the resulting pattern is modified to be
330 * @param decimal
333 void setDecimal(const UnicodeString& decimal);
337 * @return UnicodeString corresponding to the decimal point
391 UnicodeString decimal; member in class:DateTimePatternGenerator
  /external/freetype/src/psaux/
psconv.c 27 /* digits (both decimal and non-decimal) into numbers. */
149 FT_Long decimal = 0, divider = 1; local
170 /* read the decimal part */
191 decimal = decimal * 10 + c;
197 decimal = decimal * 10 + c;
214 decimal *= 10;
225 if ( decimal )
    [all...]
  /external/icu4c/i18n/unicode/
dtptngen.h 374 * The decimal value is used in formatting fractions of seconds. If the
378 * the decimal string is ",". Then the resulting pattern is modified to be
381 * @param decimal
384 void setDecimal(const UnicodeString& decimal);
388 * @return UnicodeString corresponding to the decimal point
442 UnicodeString decimal; member in class:DateTimePatternGenerator
  /external/chromium/third_party/icu/source/test/intltest/
tsdcfmsy.cpp 69 UnicodeString decimal = en.getSymbol(DecimalFormatSymbols::kDecimalSeparatorSymbol); local
70 fr.setSymbol(DecimalFormatSymbols::kDecimalSeparatorSymbol, decimal);
220 errln("ERROR: construction of decimal format failed");
  /external/icu4c/test/intltest/
tsdcfmsy.cpp 69 UnicodeString decimal = en.getSymbol(DecimalFormatSymbols::kDecimalSeparatorSymbol); local
70 fr.setSymbol(DecimalFormatSymbols::kDecimalSeparatorSymbol, decimal);
220 errln("ERROR: construction of decimal format failed");
  /frameworks/base/core/java/android/text/method/
DigitsKeyListener.java 35 private static final int DECIMAL = 2;
64 * plus the minus sign (only at the beginning) and/or decimal point
67 public DigitsKeyListener(boolean sign, boolean decimal) {
69 mDecimal = decimal;
71 int kind = (sign ? SIGN : 0) | (decimal ? DECIMAL : 0);
84 * plus the minus sign (only at the beginning) and/or decimal point
87 public static DigitsKeyListener getInstance(boolean sign, boolean decimal) {
88 int kind = (sign ? SIGN : 0) | (decimal ? DECIMAL : 0)
140 int decimal = -1; local
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/luni/util/
FloatingPointParser.java 97 int start, end, decimal; local
151 decimal = s.indexOf('.');
152 if (decimal > -1) {
153 e -= end - decimal - 1;
154 s = s.substring(start, decimal) + s.substring(decimal + 1, end);
  /external/webkit/WebCore/svg/
SVGParserUtilities.cpp 58 FloatType decimal, frac; local
65 decimal = 0;
93 decimal += (*(ptr++) - '0') * (frac *= static_cast<FloatType>(0.1));
120 number = integer + decimal;
  /external/icu4c/common/
uloc.c 2108 char *decimal; local
    [all...]
  /external/quake/quake/src/QW/client/
common.c 338 // assume decimal
357 int decimal, total; local
398 // assume decimal
400 decimal = -1;
407 decimal = total;
416 if (decimal == -1)
418 while (total > decimal)
    [all...]
  /external/quake/quake/src/WinQuake/
common.cpp 337 // assume decimal
356 int decimal, total; local
397 // assume decimal
399 decimal = -1;
406 decimal = total;
415 if (decimal == -1)
417 while (total > decimal)
    [all...]
  /external/chromium/third_party/icu/source/common/
uloc.c 2770 char *decimal; local
    [all...]
  /external/chromium/third_party/icu/source/i18n/
decimfmt.cpp 151 * CURRENCY_SIGN is seen in a pattern, then the decimal separator is
152 * replaced with the monetary decimal separator.
1201 const UnicodeString *decimal; local
1901 const UnicodeString *decimal; local
    [all...]
  /external/icu4c/i18n/
decimfmt.cpp 214 * CURRENCY_SIGN is seen in a pattern, then the decimal separator is
215 * replaced with the monetary decimal separator.
1180 const UnicodeString *decimal; local
1856 const UnicodeString *decimal; local
    [all...]
  /external/libxml2/
xmlschemastypes.c 120 xmlSchemaValDecimal decimal; member in union:_xmlSchemaVal::__anon5244
245 ret->val->value.decimal.lo = value;
466 xmlSchemaTypeDecimalDef = xmlSchemaInitBasicType("decimal",
    [all...]
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /prebuilt/sdk/9/
android.jar 

Completed in 1849 milliseconds