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

1 2 3 4 5 6 7 8 910

  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue40/
DogFoodBean.java 21 BigDecimal decimal; field in class:DogFoodBean
24 decimal = BigDecimal.ZERO;
28 return decimal;
31 public void setDecimal(BigDecimal decimal) {
32 this.decimal = decimal;
  /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...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/hppa/basic/
dcor.s 4 ; decimal correction instruction tests.
dcor2.s 4 ; PA2.0 decimal correction instruction tests.
  /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 */
254 if ( divider < 0xCCCCCCCL && decimal < 0xCCCCCCCL )
256 decimal = decimal * 10 + c;
291 if ( !integral && !decimal )
305 if ( decimal >= 0xCCCCCCCL )
312 decimal *= 10
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/psaux/
psconv.c 38 /* digits (both decimal and non-decimal) into numbers. */
200 FT_Long decimal = 0; local
235 /* read the decimal part */
254 if ( divider < 0xCCCCCCCL && decimal < 0xCCCCCCCL )
256 decimal = decimal * 10 + c;
291 if ( !integral && !decimal )
305 if ( decimal >= 0xCCCCCCCL )
312 decimal *= 10
    [all...]
  /external/pdfium/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 */
254 if ( divider < 0xCCCCCCCL && decimal < 0xCCCCCCCL )
256 decimal = decimal * 10 + c;
291 if ( !integral && !decimal )
305 if ( decimal >= 0xCCCCCCCL )
312 decimal *= 10
    [all...]
  /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);
  /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'))
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/emr/
test_instance_group_args.py 5 # if bidprice is not specified, but allows float, int, Decimal.
7 from decimal import Decimal
34 Test InstanceGroup init works with bidprice type = Decimal.
37 'SPOT', 'master', bidprice=Decimal(1.10))
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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...]
  /toolchain/binutils/binutils-2.25/binutils/
size.c 46 decimal, octal, hex
48 radix = decimal;
83 -o|-d|-x --radix={8|10|16} Display numbers in octal, decimal or hex\n\
178 radix = decimal;
203 radix = decimal;
217 and M, N, O, P, Q are expressed in decimal by default,
418 (radix == decimal ? "%" BFD_VMA_FMT "u" :
431 (radix == decimal ? "%" BFD_VMA_FMT "u" :
45 decimal, octal, hex enumerator in enum:__anon75061
  /external/autotest/client/common_lib/
smogcheck_ina219.py 183 convert to decimal value = 6602
184 divide decimal by 2000.0 = 3.301 (volts)
201 decimal = int('0x%s%s' % (match.group(2), match.group(1)), 16)
202 return decimal/denom
  /external/compiler-rt/lib/tsan/
analyze_libtsan.sh 41 size=$(grep __tsan_$f$ ${NM_CONTENTS} | 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/libxml2/
xmlschemastypes.c 120 xmlSchemaValDecimal decimal; member in union:_xmlSchemaVal::__anon16956
249 ret->val->value.decimal.lo = value;
470 xmlSchemaTypeDecimalDef = xmlSchemaInitBasicType("decimal",
    [all...]
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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...]

Completed in 1541 milliseconds

1 2 3 4 5 6 7 8 910