HomeSort by relevance Sort by last modified time
    Searched refs:decimal (Results 1 - 25 of 67) sorted by null

1 2 3

  /frameworks/base/core/java/android/text/method/
DigitsKeyListener.java 39 private static final int DECIMAL = 2;
68 * plus the minus sign (only at the beginning) and/or decimal point
71 public DigitsKeyListener(boolean sign, boolean decimal) {
73 mDecimal = decimal;
75 int kind = (sign ? SIGN : 0) | (decimal ? DECIMAL : 0);
88 * plus the minus sign (only at the beginning) and/or decimal point
91 public static DigitsKeyListener getInstance(boolean sign, boolean decimal) {
92 int kind = (sign ? SIGN : 0) | (decimal ? DECIMAL : 0)
144 int decimal = -1; local
    [all...]
  /external/icu4c/i18n/
decfmtst.h 10 * parsing of decimal and group separators.
38 static const UnicodeSet *getSimilarDecimals(UChar32 decimal, UBool strictParse);
decfmtst.cpp 10 * parsing of decimal and group separators.
215 const UnicodeSet *DecimalFormatStaticSets::getSimilarDecimals(UChar32 decimal, UBool strictParse)
225 if (gStaticSets->fDotEquivalents->contains(decimal)) {
229 if (gStaticSets->fCommaEquivalents->contains(decimal)) {
udatpg.cpp 199 const UChar *decimal, int32_t length) {
200 UnicodeString decimalString((UBool)(length<0), decimal, length);
dtptngen.cpp 311 decimal = other.decimal;
314 decimal.getTerminatedBuffer();
342 (dateTimeFormat==other.dateTimeFormat) && (decimal==other.decimal)) {
808 this->decimal = newDecimal;
810 this->decimal.getTerminatedBuffer();
815 return decimal;
866 decimal = dfs.getSymbol(DecimalFormatSymbols::kDecimalSeparatorSymbol);
868 decimal.getTerminatedBuffer()
    [all...]
  /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/llvm/tools/llvm-size/
llvm-size.cpp 50 enum RadixTy {octal = 8, decimal = 10, hexadecimal = 16}; enumerator in enum:RadixTy
54 cl::init(decimal));
59 clEnumValN(decimal, "d", "Print size in decimal"),
62 cl::init(decimal));
101 case decimal:
  /libcore/luni/src/main/java/java/lang/
StringToReal.java 154 int decimal = s.indexOf('.'); local
155 if (decimal > -1) {
156 result.e -= end - decimal - 1;
157 s = s.substring(start, decimal) + s.substring(decimal + 1, end);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-netrexx.jar 
  /external/webkit/Source/WebCore/svg/
SVGParserUtilities.cpp 48 FloatType integer, decimal, frac, exponent; local
55 decimal = 0;
96 decimal += (*(ptr++) - '0') * (frac *= static_cast<FloatType>(0.1));
126 number = integer + decimal;
  /external/libxml2/
xmlschemastypes.c 120 xmlSchemaValDecimal decimal; member in union:_xmlSchemaVal::__anon8614
245 ret->val->value.decimal.lo = value;
466 xmlSchemaTypeDecimalDef = xmlSchemaInitBasicType("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
udatpg.h 446 * The decimal value is used in formatting fractions of seconds. If the
450 * the decimal string is ",". Then the resulting pattern is modified to be
454 * @param decimal
455 * @param length the length of decimal.
460 const UChar *decimal, int32_t length);
466 * @param pLength A pointer that will receive the length of the decimal string.
467 * @return corresponding to the decimal point.
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
typeinfoisderivedfrom62.js 79 Check if xs:byte is derived by restriction from xs:decimal
102 isDerived = typeInfo.isDerivedFrom("http://www.w3.org/2001/XMLSchema","decimal",1);
  /external/webkit/Source/JavaScriptCore/icu/unicode/
umachine.h 198 # error int64_t is required for decimal format and rule-based number format.
  /external/webkit/Source/JavaScriptGlue/icu/unicode/
umachine.h 198 # error int64_t is required for decimal format and rule-based number format.
  /external/webkit/Source/WebCore/icu/unicode/
umachine.h 198 # error int64_t is required for decimal format and rule-based number format.
  /external/webkit/Source/WebKit/mac/icu/unicode/
umachine.h 198 # error int64_t is required for decimal format and rule-based number format.
  /external/icu4c/common/unicode/
umachine.h 191 # error int64_t is required for decimal format and rule-based number format.
  /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");
  /external/webkit/LayoutTests/fast/url/script-tests/
ipv6.js 86 // unsigned decimal number.
  /external/webkit/Source/WebCore/css/
CSSPrimitiveValue.cpp 608 DecimalNumber decimal(number);
610 StringBuffer buffer(decimal.bufferLengthForStringDecimal());
611 unsigned length = decimal.toStringDecimal(buffer.characters(), buffer.length());
  /external/llvm/docs/
llvm.css 111 div.contents ul { list-style-type: decimal }
  /external/v8/test/mjsunit/regress/
regress-1246.js 46 // These values will trigger decimal parsing.
  /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...]

Completed in 1174 milliseconds

1 2 3