Searched defs:decimal (Results 1 - 25 of 30) sorted by relevance

12

/external/chromium_org/third_party/icu/source/i18n/unicode/
H A Ddtptngen.h391 * 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/i18n/unicode/
H A Ddtptngen.h391 * 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/chromium_org/third_party/freetype/src/psaux/
H A Dpsconv.c38 /* 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 *
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Ddecfmtst.cpp10 * parsing of decimal and group separators.
227 const UnicodeSet *DecimalFormatStaticSets::getSimilarDecimals(UChar32 decimal, UBool strictParse) argument
235 if (gStaticSets->fDotEquivalents->contains(decimal)) {
239 if (gStaticSets->fCommaEquivalents->contains(decimal)) {
H A Dudatpg.cpp199 const UChar *decimal, int32_t length) {
200 UnicodeString decimalString((UBool)(length<0), decimal, length);
198 udatpg_setDecimal(UDateTimePatternGenerator *dtpg, const UChar *decimal, int32_t length) argument
H A Ddecimfmt.cpp264 * CURRENCY_SIGN is seen in a pattern, then the decimal separator is
265 * replaced with the monetary decimal separator.
1094 // Any formattable originating as a big decimal will have had a pre-existing digit list.
1108 // Create a fixed decimal from a DigitList.
1126 // For simplicity, the int64_t fields are limited to 18 decimal digits, even
1741 const UnicodeString *decimal; local
1743 decimal = &getConstSymbol(DecimalFormatSymbols::kDecimalSeparatorSymbol);
1745 decimal = &getConstSymbol(DecimalFormatSymbols::kMonetarySeparatorSymbol);
1806 // place the decimal point after the "integer" digits, which
1828 appendTo += *decimal;
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtsdcfmsy.cpp65 UnicodeString decimal = en.getSymbol(DecimalFormatSymbols::kDecimalSeparatorSymbol); local
66 fr.setSymbol(DecimalFormatSymbols::kDecimalSeparatorSymbol, decimal);
254 errln("ERROR: construction of decimal format failed - %s", u_errorName(status));
/external/freetype/src/psaux/
H A Dpsconv.c38 /* 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 *
[all...]
/external/icu/icu4c/source/i18n/
H A Ddecfmtst.cpp10 * parsing of decimal and group separators.
227 const UnicodeSet *DecimalFormatStaticSets::getSimilarDecimals(UChar32 decimal, UBool strictParse) argument
235 if (gStaticSets->fDotEquivalents->contains(decimal)) {
239 if (gStaticSets->fCommaEquivalents->contains(decimal)) {
H A Dudatpg.cpp199 const UChar *decimal, int32_t length) {
200 UnicodeString decimalString((UBool)(length<0), decimal, length);
198 udatpg_setDecimal(UDateTimePatternGenerator *dtpg, const UChar *decimal, int32_t length) argument
/external/icu/icu4c/source/test/intltest/
H A Dtsdcfmsy.cpp65 UnicodeString decimal = en.getSymbol(DecimalFormatSymbols::kDecimalSeparatorSymbol); local
66 fr.setSymbol(DecimalFormatSymbols::kDecimalSeparatorSymbol, decimal);
254 errln("ERROR: construction of decimal format failed - %s", u_errorName(status));
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/psaux/
H A Dpsconv.c38 /* 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 >
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/
H A DDecimalTest.cpp41 std::ostream& operator<<(std::ostream& os, const Decimal& decimal) argument
43 Decimal::EncodedData data = decimal.value();
48 << ")=" << decimal.toString().ascii().data();
117 #define EXPECT_DECIMAL_ENCODED_DATA_EQ(expectedCoefficient, expectedExponent, expectedSign, decimal) \
118 EXPECT_EQ((expectedCoefficient), (decimal).value().coefficient()); \
119 EXPECT_EQ((expectedExponent), (decimal).value().exponent()); \
120 EXPECT_EQ(Decimal::expectedSign, (decimal).value().sign());
122 #define EXPECT_DECIMAL_STREQ(expected, decimal) EXPECT_STREQ((expected), (decimal).toString().ascii().data())
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_format_r11g11b10f.h119 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/
H A Du_format_r11g11b10f.h119 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/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGParserUtilities.cpp48 FloatType integer, decimal, frac, exponent; local
55 decimal = 0;
99 decimal += (*(ptr++) - '0') * (frac *= static_cast<FloatType>(0.1));
129 number = integer + decimal;
/external/llvm/tools/llvm-size/
H A Dllvm-size.cpp63 enum RadixTy { octal = 8, decimal = 10, hexadecimal = 16 }; enumerator in enum:RadixTy
66 cl::init(decimal));
71 clEnumValN(decimal, "d", "Print size in decimal"),
74 cl::init(decimal));
105 case decimal:
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-netrexx.jar ... boolean compile private boolean console private boolean crossref private boolean decimal private java.io.File destDir private boolean diag ...
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSPrimitiveValue.cpp1027 Decimal decimal = Decimal::fromDouble(number); local
1028 String result = decimal.toString();
/external/valgrind/main/VEX/priv/
H A Dguest_s390_helpers.c850 s390_do_cvb(ULong decimal) argument
857 : [input] "m"(decimal)
864 UInt s390_do_cvb(ULong decimal) { return 0; } argument
869 /*--- Clean helper for "convert to decimal". ---*/
876 ULong decimal; local
880 : [result] "=m"(decimal)
884 return decimal;
/external/chromium_org/third_party/libxml/src/
H A Dxmlschemastypes.c120 xmlSchemaValDecimal decimal; member in union:_xmlSchemaVal::__anon13388
245 ret->val->value.decimal.lo = value;
466 xmlSchemaTypeDecimalDef = xmlSchemaInitBasicType("decimal",
1254 * 2-digits integer part and may or may not have a decimal part.
1511 * then it must have an integer part and a decimal part; @num_type will
1512 * be set to 1. If there is no decimal part, @num_type is set to zero.
2262 * xs:decimal has a whitespace-facet value of 'collapse'.
2285 * and note the position of a decimal point.
2352 &v->value.decimal.lo,
2353 &v->value.decimal
[all...]
/external/libxml2/
H A Dxmlschemastypes.c120 xmlSchemaValDecimal decimal; member in union:_xmlSchemaVal::__anon25114
245 ret->val->value.decimal.lo = value;
466 xmlSchemaTypeDecimalDef = xmlSchemaInitBasicType("decimal",
1254 * 2-digits integer part and may or may not have a decimal part.
1511 * then it must have an integer part and a decimal part; @num_type will
1512 * be set to 1. If there is no decimal part, @num_type is set to zero.
2262 * xs:decimal has a whitespace-facet value of 'collapse'.
2285 * and note the position of a decimal point.
2352 &v->value.decimal.lo,
2353 &v->value.decimal
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/robolectric/lib/main/
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...

Completed in 1602 milliseconds

12