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

1 2 3 4 5 6 7 8

  /frameworks/base/core/java/android/text/method/
DigitsKeyListener.java 39 private static final int DECIMAL = 2;
77 * plus the minus sign (only at the beginning) and/or decimal point
80 public DigitsKeyListener(boolean sign, boolean decimal) {
82 mDecimal = decimal;
84 int kind = (sign ? SIGN : 0) | (decimal ? DECIMAL : 0);
97 * plus the minus sign (only at the beginning) and/or decimal point
100 public static DigitsKeyListener getInstance(boolean sign, boolean decimal) {
101 int kind = (sign ? SIGN : 0) | (decimal ? DECIMAL : 0)
153 int decimal = -1; local
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/psaux/
psconv.c 38 /* digits (both decimal and non-decimal) into numbers. */
203 FT_INT64 decimal = 0; local
206 FT_Long decimal = 0; local
253 /* read the decimal part */
271 if ( decimal < 0xCCCCCCCL )
273 decimal = decimal * 10 + c;
308 if ( !integral && !decimal )
322 if ( decimal >= 0xCCCCCCCL
    [all...]
  /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/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_format_r11g11b10f.h 119 float scale, decimal; local
127 decimal = 1.0f + (float) mantissa / 64;
128 f32.f = scale * decimal;
205 float scale, decimal; local
213 decimal = 1.0f + (float) mantissa / 32;
214 f32.f = scale * decimal;
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_r11g11b10f.h 119 float scale, decimal; local
127 decimal = 1.0f + (float) mantissa / 64;
128 f32.f = scale * decimal;
205 float scale, decimal; local
213 decimal = 1.0f + (float) mantissa / 32;
214 f32.f = scale * decimal;
  /external/icu/icu4c/source/i18n/
decfmtst.h 10 * parsing of decimal and group separators.
39 static const UnicodeSet *getSimilarDecimals(UChar32 decimal, UBool strictParse);
decfmtst.cpp 10 * parsing of decimal and group separators.
227 const UnicodeSet *DecimalFormatStaticSets::getSimilarDecimals(UChar32 decimal, UBool strictParse)
235 if (gStaticSets->fDotEquivalents->contains(decimal)) {
239 if (gStaticSets->fCommaEquivalents->contains(decimal)) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/tests/
test_decode.py 1 import decimal namespace
9 rval = self.loads('1.1', parse_float=decimal.Decimal)
10 self.assertTrue(isinstance(rval, decimal.Decimal))
11 self.assertEqual(rval, decimal.Decimal('1.1'))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/tests/
test_decode.py 1 import decimal namespace
9 rval = self.loads('1.1', parse_float=decimal.Decimal)
10 self.assertTrue(isinstance(rval, decimal.Decimal))
11 self.assertEqual(rval, decimal.Decimal('1.1'))
  /libcore/luni/src/main/java/java/lang/
StringToReal.java 155 int decimal = -1; local
159 if (decimal != -1) {
162 decimal = i;
167 if (decimal > -1) {
168 result.e -= end - decimal - 1;
169 s = s.substring(start, decimal) + s.substring(decimal + 1, end);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_unicodedata.py 94 str(self.db.decimal(char, -1)),
129 self.assertEqual(self.db.decimal(u'A',None), None)
130 self.assertEqual(self.db.decimal(u'9'), 9)
131 self.assertEqual(self.db.decimal(u'\u215b', None), None)
132 self.assertEqual(self.db.decimal(u'\u2468', None), None)
133 self.assertEqual(self.db.decimal(u'\U00020000', None), None)
135 self.assertRaises(TypeError, self.db.decimal)
136 self.assertRaises(TypeError, self.db.decimal, u'xx')
137 self.assertRaises(ValueError, self.db.decimal, u'x')
242 # Test that decimal and numeric are consistent
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_unicodedata.py 94 str(self.db.decimal(char, -1)),
129 self.assertEqual(self.db.decimal(u'A',None), None)
130 self.assertEqual(self.db.decimal(u'9'), 9)
131 self.assertEqual(self.db.decimal(u'\u215b', None), None)
132 self.assertEqual(self.db.decimal(u'\u2468', None), None)
133 self.assertEqual(self.db.decimal(u'\U00020000', None), None)
135 self.assertRaises(TypeError, self.db.decimal)
136 self.assertRaises(TypeError, self.db.decimal, u'xx')
137 self.assertRaises(ValueError, self.db.decimal, u'x')
242 # Test that decimal and numeric are consistent
    [all...]
  /external/compiler-rt/lib/tsan/
analyze_libtsan.sh 30 size=$(grep __tsan_$f$ libtsan.nm | awk --non-decimal-data '{print ("0x"$2)+0}')
  /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/chromium_org/third_party/libxml/src/
xmlschemastypes.c 120 xmlSchemaValDecimal decimal; member in union:_xmlSchemaVal::__anon17008
245 ret->val->value.decimal.lo = value;
466 xmlSchemaTypeDecimalDef = xmlSchemaInitBasicType("decimal",
    [all...]
  /external/libxml2/
xmlschemastypes.c 120 xmlSchemaValDecimal decimal; member in union:_xmlSchemaVal::__anon28884
245 ret->val->value.decimal.lo = value;
466 xmlSchemaTypeDecimalDef = xmlSchemaInitBasicType("decimal",
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
fractions.py 7 from decimal import Decimal
37 (?:\.(?P<decimal>\d*))? # an optional fractional part
59 - float and Decimal instances
89 >>> Fraction('-47e-2') # string may include a decimal exponent
95 >>> Fraction(Decimal('1.47'))
114 elif isinstance(numerator, Decimal):
132 decimal = m.group('decimal')
133 if decimal
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
fractions.py 7 from decimal import Decimal
37 (?:\.(?P<decimal>\d*))? # an optional fractional part
59 - float and Decimal instances
89 >>> Fraction('-47e-2') # string may include a decimal exponent
95 >>> Fraction(Decimal('1.47'))
114 elif isinstance(numerator, Decimal):
132 decimal = m.group('decimal')
133 if decimal
    [all...]
  /external/chromium_org/third_party/icu/source/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/icu/icu4c/source/i18n/unicode/
dtptngen.h 391 * The decimal value is used in formatting fractions of seconds. If the
395 * the decimal string is ",". Then the resulting pattern is modified to be
398 * @param decimal
401 void setDecimal(const UnicodeString& decimal);
405 * @return UnicodeString corresponding to the decimal point
459 UnicodeString decimal; member in class:DateTimePatternGenerator
  /external/icu/icu4c/source/common/unicode/
umachine.h 163 # error int64_t is required for decimal format and rule-based number format.
  /external/chromium_org/third_party/icu/source/common/unicode/
umachine.h 182 # error int64_t is required for decimal format and rule-based number format.
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/tests/
manual.css 62 list-style: decimal inside;
  /external/chromium_org/remoting/webapp/
host.js 47 * either dotted-decimal notation notation, or directly represented by the

Completed in 796 milliseconds

1 2 3 4 5 6 7 8