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

1 2 3 4 5 6 7 8 9

  /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;
  /prebuilts/go/darwin-x86/src/math/big/
decimal.go 5 // This file implements multi-precision decimal numbers.
6 // The implementation is for float to decimal conversion only;
9 // decimal and rounding.
12 // strconv/decimal.go: conversion of binary fractional values can be done
13 // precisely in multi-precision decimal because 2 divides 10 (required for
14 // >> of mantissa); but conversion of decimal floating-point values cannot
17 // In contrast to strconv/decimal.go, only right shift is implemented in
18 // decimal format - left shift can be done precisely in binary format.
22 // A decimal represents an unsigned floating-point number in decimal representation
27 type decimal struct { type
    [all...]
  /prebuilts/go/linux-x86/src/math/big/
decimal.go 5 // This file implements multi-precision decimal numbers.
6 // The implementation is for float to decimal conversion only;
9 // decimal and rounding.
12 // strconv/decimal.go: conversion of binary fractional values can be done
13 // precisely in multi-precision decimal because 2 divides 10 (required for
14 // >> of mantissa); but conversion of decimal floating-point values cannot
17 // In contrast to strconv/decimal.go, only right shift is implemented in
18 // decimal format - left shift can be done precisely in binary format.
22 // A decimal represents an unsigned floating-point number in decimal representation
27 type decimal struct { type
    [all...]
  /external/icu/icu4c/source/i18n/unicode/
dtptngen.h 450 * The decimal value is used in formatting fractions of seconds. If the
454 * the decimal string is ",". Then the resulting pattern is modified to be
457 * @param decimal
460 void setDecimal(const UnicodeString& decimal);
464 * @return UnicodeString corresponding to the decimal point
518 UnicodeString decimal; member in class:DateTimePatternGenerator
  /prebuilts/go/darwin-x86/src/strconv/
decimal.go 5 // Multiprecision decimal numbers.
8 // Can do binary floating point in multiprecision decimal precisely
9 // because 2 divides 10; cannot do decimal floating point
14 type decimal struct { type
17 dp int // decimal point
22 func (a *decimal) String() string {
38 // zeros fill space between decimal point and digits
47 // decimal point in middle of digits
54 // zeros fill space between digits and decimal point
69 // (They are meaningless; the decimal point is tracke
    [all...]
  /prebuilts/go/linux-x86/src/strconv/
decimal.go 5 // Multiprecision decimal numbers.
8 // Can do binary floating point in multiprecision decimal precisely
9 // because 2 divides 10; cannot do decimal floating point
14 type decimal struct { type
17 dp int // decimal point
22 func (a *decimal) String() string {
38 // zeros fill space between decimal point and digits
47 // decimal point in middle of digits
54 // zeros fill space between digits and decimal point
69 // (They are meaningless; the decimal point is tracke
    [all...]
  /external/freetype/src/psaux/
psconv.c 38 /* digits (both decimal and non-decimal) into numbers. */
204 FT_Long decimal = 0; local
243 /* read the decimal part */
262 if ( divider < 0xCCCCCCCL && decimal < 0xCCCCCCCL )
264 decimal = decimal * 10 + c;
299 if ( !integral && !decimal )
313 if ( decimal >= 0xCCCCCCCL )
320 decimal *= 10
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/number/
MacroProps.java 31 public DecimalSeparatorDisplay decimal; field in class:MacroProps
53 if (decimal == null) decimal = fallback.decimal;
72 decimal,
94 && Utility.equals(decimal, other.decimal)
MicroProps.java 21 public DecimalSeparatorDisplay decimal; field in class:MicroProps
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
IntlTestDecimalFormatSymbolsC.java 62 char decimal = en.getDecimalSeparator(); local
63 fr.setDecimalSeparator(decimal);
IntlTestDecimalFormatSymbols.java 17 @summary test International Decimal Format Symbols
106 char decimal = en.getDecimalSeparator(); local
107 fr.setDecimalSeparator(decimal);
268 errln("decimal format symbols clone, equals, or hashCode failed");
  /external/icu/icu4c/source/i18n/
number_utils.h 61 UNumberDecimalSeparatorDisplay decimal; member in struct:number::impl::MicroProps
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
MacroProps.java 27 public DecimalSeparatorDisplay decimal; field in class:MacroProps
49 if (decimal == null) decimal = fallback.decimal;
68 decimal,
90 && Utility.equals(decimal, other.decimal)
MicroProps.java 17 public DecimalSeparatorDisplay decimal; field in class:MicroProps
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
IntlTestDecimalFormatSymbolsC.java 59 char decimal = en.getDecimalSeparator(); local
60 fr.setDecimalSeparator(decimal);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
unicodectype.c 29 const unsigned char decimal; member in struct:__anon4530
81 /* Returns the integer decimal (0-9) for Unicode characters having
88 return (ctype->flags & DECIMAL_MASK) ? ctype->decimal : -1;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
unicodectype.c 29 const unsigned char decimal; member in struct:__anon4876
81 /* Returns the integer decimal (0-9) for Unicode characters having
88 return (ctype->flags & DECIMAL_MASK) ? ctype->decimal : -1;
  /external/icu/icu4c/source/test/intltest/
tsdcfmsy.cpp 68 UnicodeString decimal = en.getSymbol(DecimalFormatSymbols::kDecimalSeparatorSymbol); local
69 fr.setSymbol(DecimalFormatSymbols::kDecimalSeparatorSymbol, decimal);
300 errln("ERROR: construction of decimal format failed - %s", u_errorName(status));
  /external/mesa3d/src/util/
format_r11g11b10f.h 118 float scale, decimal; local
125 decimal = 1.0f + (float) mantissa / 64;
126 f32.f = scale * decimal;
200 float scale, decimal; local
208 decimal = 1.0f + (float) mantissa / 32;
209 f32.f = scale * decimal;
  /external/python/cpython2/Objects/
unicodectype.c 29 const unsigned char decimal; member in struct:__anon32935
81 /* Returns the integer decimal (0-9) for Unicode characters having
88 return (ctype->flags & DECIMAL_MASK) ? ctype->decimal : -1;
  /external/swiftshader/third_party/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:
  /packages/services/BuiltInPrintService/jni/plugins/
wprint_scaler.h 34 uint32 decimal; member in struct:float64_s
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/decimal/
decimal.h 0 // decimal classes -*- C++ -*-
25 /** @file decimal/decimal.h
27 * Do not attempt to use it directly. @headername{decimal}
40 namespace decimal namespace
465 } // namespace decimal
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/decimal/
decimal.h 0 // decimal classes -*- C++ -*-
25 /** @file decimal/decimal.h
27 * Do not attempt to use it directly. @headername{decimal}
40 namespace decimal namespace
465 } // namespace decimal
  /external/icu/android_icu4j/src/main/java/android/icu/number/
NumberFormatterSettings.java 144 * <li>Round to 3 decimal places: "3.142"
209 * Specifies the minimum and maximum number of digits to render before the decimal mark.
237 * Specifies the symbols (decimal separator, grouping separator, percent sign, numerals, etc.) to use when rendering
374 * Sets the decimal separator display strategy. This affects integer numbers with no fraction part. Most common
386 * NumberFormatter.with().decimal(DecimalSeparatorDisplay.ALWAYS)
390 * The default is AUTO decimal separator display.
393 * The decimal separator display strategy to use when rendering numbers.
398 public T decimal(DecimalSeparatorDisplay style) { method in class:NumberFormatterSettings
504 if (macros.decimal == null) {
505 macros.decimal = (DecimalSeparatorDisplay) current.value
    [all...]

Completed in 1828 milliseconds

1 2 3 4 5 6 7 8 9