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

12 3 4 5 6 7 8 9

  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/number/
NumberFormatterApiTest.java 544 "$GBP F0 grouping=none integer-width=1- symbols=loc:en sign=AUTO decimal=AUTO",
1465 public void decimal() { method in class:NumberFormatterApiTest
    [all...]
  /external/icu/icu4c/source/i18n/
number_fluent.cpp 99 Derived NumberFormatterSettings<Derived>::decimal(const UNumberDecimalSeparatorDisplay &style) const { function in class:NumberFormatterSettings
101 copy.fMacros.decimal = style;
  /external/icu/icu4c/source/test/intltest/
numbertest_api.cpp 76 TESTCASE_AUTO(decimal);
1373 void NumberFormatterApiTest::decimal() { function in class:NumberFormatterApiTest
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/number/
NumberFormatterSettings.java 145 * <li>Round to 3 decimal places: "3.142"
211 * Specifies the minimum and maximum number of digits to render before the decimal mark.
240 * Specifies the symbols (decimal separator, grouping separator, percent sign, numerals, etc.) to use when rendering
381 * Sets the decimal separator display strategy. This affects integer numbers with no fraction part. Most common
393 * NumberFormatter.with().decimal(DecimalSeparatorDisplay.ALWAYS)
397 * The default is AUTO decimal separator display.
400 * The decimal separator display strategy to use when rendering numbers.
406 public T decimal(DecimalSeparatorDisplay style) { method in class:NumberFormatterSettings
512 if (macros.decimal == null) {
513 macros.decimal = (DecimalSeparatorDisplay) current.value
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
IntlTestDecimalFormatSymbols.java 16 @summary test International Decimal Format Symbols
103 char decimal = en.getDecimalSeparator(); local
104 fr.setDecimalSeparator(decimal);
265 errln("decimal format symbols clone, equals, or hashCode failed");
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/
NumberFormatterApiTest.java 541 "$GBP F0 grouping=none integer-width=1- symbols=loc:en sign=AUTO decimal=AUTO",
1462 public void decimal() { method in class:NumberFormatterApiTest
    [all...]
  /external/python/cpython3/Objects/
unicodectype.c 37 /* Note if more flag space is needed, decimal and digit could be unified. */
38 const unsigned char decimal; member in struct:__anon33573
103 /* Returns the integer decimal (0-9) for Unicode characters having
110 return (ctype->flags & DECIMAL_MASK) ? ctype->decimal : -1;
  /external/syslinux/gpxe/src/core/
vsprintf.c 105 * Format a decimal number
112 * Fills a buffer in reverse order with a formatted decimal number.
189 /* We always 0-pad hex and space-pad decimal */
246 signed long decimal; local
249 decimal = va_arg ( args, signed long );
251 decimal = va_arg ( args, signed int );
253 ptr = format_decimal ( ptr, decimal, width );
  /frameworks/base/core/java/android/text/method/
DigitsKeyListener.java 66 private static final int DECIMAL = 2;
106 * or minus sign (only at the beginning) and/or the ASCII period ('.') as the decimal point
112 public DigitsKeyListener(boolean sign, boolean decimal) {
113 this(null, sign, decimal);
123 final int kind = (mSign ? SIGN : 0) | (mDecimal ? DECIMAL : 0);
129 final int kind = (mSign ? SIGN : 0) | (mDecimal ? DECIMAL : 0);
155 public DigitsKeyListener(@Nullable Locale locale, boolean sign, boolean decimal) {
157 mDecimal = decimal;
170 if (sign || decimal) {
193 if (decimal) {
354 int decimal = -1; local
    [all...]
  /toolchain/binutils/binutils-2.27/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\
179 radix = decimal;
204 radix = decimal;
218 and M, N, O, P, Q are expressed in decimal by default,
426 (radix == decimal ? "%" BFD_VMA_FMT "u" :
439 (radix == decimal ? "%" BFD_VMA_FMT "u" :
45 decimal, octal, hex enumerator in enum:__anon4167
  /external/guava/guava/src/com/google/common/primitives/
Doubles.java 592 String decimal = "(?:\\d++(?:\\.\\d*+)?|\\.\\d++)"; local
593 String completeDec = decimal + "(?:[eE][+-]?\\d++)?[fFdD]?";
  /external/llvm/tools/llvm-size/
llvm-size.cpp 71 enum RadixTy { octal = 8, decimal = 10, hexadecimal = 16 }; enumerator in enum:RadixTy
74 cl::init(decimal));
79 clEnumValN(decimal, "d", "Print size in decimal"),
82 cl::init(decimal));
168 case decimal:
    [all...]
  /external/icu/icu4c/source/i18n/unicode/
numberformatter.h 242 * An enum declaring how to render the decimal separator.
252 * Show the decimal separator when there are one or more digits to display after the separator, and do not show
260 * Always show the decimal separator, even if there are no digits to display after the separator.
324 * number in the form "#E0", where the number is displayed with one digit before the decimal separator, zero or more
325 * digits after the decimal separator, and the corresponding power of 10 displayed after the "E".
401 * integer after scaling the number by the corresponding power of 10, but with a digit shown after the decimal
402 * separator if there is only one digit before the decimal separator. The default compact notation rounding strategy
601 * Show numbers rounded if necessary to a certain number of fraction places (numerals after the decimal separator).
622 * The minimum and maximum number of numerals to display after the decimal separator (rounding if too
630 * Always show at least a certain number of fraction places after the decimal separator, padding with zeros i
1310 UNumberDecimalSeparatorDisplay decimal = UNUM_DECIMAL_SEPARATOR_COUNT; member in struct:number::impl::MacroProps
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/scanner/
ScannerImpl.java 1899 int decimal = Integer.parseInt(hex, 16); local
    [all...]
  /external/valgrind/VEX/priv/
guest_s390_helpers.c 852 s390_do_cvb(ULong decimal)
859 : [input] "m"(decimal)
866 UInt s390_do_cvb(ULong decimal) { return 0; }
871 /*--- Clean helper for "convert to decimal". ---*/
878 ULong decimal; local
882 : [result] "=m"(decimal)
886 return decimal;
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
reader.h 956 const char* decimal = s.Pop(); \/\/ Pop stack no matter if it will be used or not. local
    [all...]
  /prebuilts/go/darwin-x86/src/database/sql/
sql_test.go 3384 type decimal struct { type
    [all...]
  /prebuilts/go/linux-x86/src/database/sql/
sql_test.go 3384 type decimal struct { type
    [all...]
  /external/deqp/external/openglcts/modules/gles31/
es31cLayoutBindingTests.cpp 363 decimal = 0, enumerator in enum:glcts::IntegerConstant::Literals
384 case decimal:
    [all...]
  /external/pdfium/xfa/fgas/crt/
cfgas_formatstring.cpp 49 {0x54034c2f, L"decimal", FX_LOCALENUMPATTERN_Decimal},
1530 CFX_Decimal decimal = CFX_Decimal(wsValue->AsStringView()); local
1877 CFX_Decimal decimal = CFX_Decimal(wsSrcNum.AsStringView()); local
    [all...]
  /external/python/cpython2/Modules/
_testcapimodule.c 1648 PyObject *decimal; local
    [all...]
  /external/python/cpython3/Lib/test/
test_functools.py 24 decimal = support.import_fresh_module('decimal', fresh=['_decimal']) variable
    [all...]
test_decimal.py 11 These are the test cases for the Decimal module.
14 the Decimal arithmetic using the tests provided by Mike Cowlishaw. The latter
19 http://speleotrove.com/decimal/dectest.zip
49 C = import_fresh_module('decimal', fresh=['_decimal'])
50 P = import_fresh_module('decimal', blocked=['_decimal'])
51 orig_sys_decimal = sys.modules['decimal']
53 # fractions module must import the correct decimal module.
55 sys.modules['decimal'] = P
57 sys.modules['decimal'] = C
59 sys.modules['decimal'] = orig_sys_decima
488 decimal = C variable in class:CIBMTestCases
490 decimal = P variable in class:PyIBMTestCases
836 decimal = C variable in class:CExplicitConstructionTest
838 decimal = P variable in class:PyExplicitConstructionTest
918 decimal = C variable in class:CImplicitConstructionTest
920 decimal = P variable in class:PyImplicitConstructionTest
1191 decimal = C variable in class:CFormatTest
1193 decimal = P variable in class:PyFormatTest
1491 decimal = C variable in class:CArithmeticOperatorsTest
1493 decimal = P variable in class:PyArithmeticOperatorsTest
1623 decimal = C variable in class:CThreadingTest
1626 decimal = P variable in class:PyThreadingTest
2438 decimal = C variable in class:CUsabilityTest
2440 decimal = P variable in class:PyUsabilityTest
2785 decimal = C variable in class:CPythonAPItests
2787 decimal = P variable in class:PyPythonAPItests
3534 decimal = C variable in class:CContextAPItests
3536 decimal = P variable in class:PyContextAPItests
3665 decimal = C variable in class:CContextWithStatement
3667 decimal = P variable in class:PyContextWithStatement
3937 decimal = C variable in class:CContextFlags
3939 decimal = P variable in class:PyContextFlags
4022 decimal = C variable in class:CSpecialContexts
4024 decimal = P variable in class:PySpecialContexts
4089 decimal = C variable in class:CContextInputValidation
4091 decimal = P variable in class:PyContextInputValidation
4203 decimal = C variable in class:CContextSubclassing
4205 decimal = P variable in class:PyContextSubclassing
4495 decimal = C variable in class:CCoverage
4497 decimal = P variable in class:PyCoverage
    [all...]
  /libcore/ojluni/src/main/java/java/util/
Scanner.java 148 * <p>A scanner will default to interpreting numbers as decimal unless a
177 * <dd>The character used for the decimal point,
264 * <dt><a name="Decimal-regex"><i>Decimal</i>:</a>
296 * <dd><i>Decimal</i>
425 // Android-changed: Support non-decimal starting digits. (i.e, a-z are valid radix digits).
433 // Android-changed: Support non-decimal starting digits.
498 String decimal = "(([-+]?" + decimalNumeral + exponent + ")|"+ local
509 floatPattern = Pattern.compile(decimal + "|" + hexFloat + "|" +
511 decimalPattern = Pattern.compile(decimal);
    [all...]
  /external/libxml2/
xmlschemastypes.c 125 xmlSchemaValDecimal decimal; member in union:_xmlSchemaVal::__anon26844
254 ret->val->value.decimal.lo = value;
475 xmlSchemaTypeDecimalDef = xmlSchemaInitBasicType("decimal",
    [all...]

Completed in 1331 milliseconds

12 3 4 5 6 7 8 9