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

12

/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue40/
H A DDogFoodBean.java21 BigDecimal decimal; field in class:DogFoodBean
24 decimal = BigDecimal.ZERO;
28 return decimal;
31 public void setDecimal(BigDecimal decimal) { argument
32 this.decimal = decimal;
/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 */
254 if ( divider < 0xCCCCCCCL && decimal < 0xCCCCCCCL )
256 decimal = decimal * 10 + c;
291 if ( !integral && !decimal )
305 if ( decimal >= 0xCCCCCCCL )
312 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.cpp201 const UChar *decimal, int32_t length) {
202 UnicodeString decimalString((UBool)(length<0), decimal, length);
200 udatpg_setDecimal(UDateTimePatternGenerator *dtpg, const UChar *decimal, int32_t length) argument
/external/icu/icu4c/source/i18n/unicode/
H A Ddtptngen.h444 * The decimal value is used in formatting fractions of seconds. If the
448 * the decimal string is ",". Then the resulting pattern is modified to be
451 * @param decimal
454 void setDecimal(const UnicodeString& decimal);
458 * @return UnicodeString corresponding to the decimal point
512 UnicodeString decimal; member in class:DateTimePatternGenerator
/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/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/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 */
254 if ( divider < 0xCCCCCCCL && decimal < 0xCCCCCCCL )
256 decimal = decimal * 10 + c;
291 if ( !integral && !decimal )
305 if ( decimal >= 0xCCCCCCCL )
312 decimal *
[all...]
/external/pdfium/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 */
254 if ( divider < 0xCCCCCCCL && decimal < 0xCCCCCCCL )
256 decimal = decimal * 10 + c;
291 if ( !integral && !decimal )
305 if ( decimal >= 0xCCCCCCCL )
312 decimal *
[all...]
/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/llvm/tools/llvm-size/
H A Dllvm-size.cpp64 enum RadixTy { octal = 8, decimal = 10, hexadecimal = 16 }; enumerator in enum:RadixTy
67 cl::init(decimal));
72 clEnumValN(decimal, "d", "Print size in decimal"),
75 cl::init(decimal));
106 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/opencv3/modules/videoio/src/
H A Dcap_gstreamer.cpp84 void toFraction(double decimal, double &numerator, double &denominator);
1579 * \param decimal
1584 void toFraction(double decimal, double &numerator, double &denominator) argument
1588 decimal = modf (decimal, &whole);
1590 if (modf(denominator * decimal, &dummy) < 0.001f)
1593 numerator = denominator * decimal;
/external/valgrind/VEX/priv/
H A Dguest_s390_helpers.c852 s390_do_cvb(ULong decimal) argument
859 : [input] "m"(decimal)
866 UInt s390_do_cvb(ULong decimal) { return 0; } argument
871 /*--- Clean helper for "convert to decimal". ---*/
878 ULong decimal; local
882 : [result] "=m"(decimal)
886 return decimal;
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DDateTimePatternGenerator.java240 // decimal point for seconds
724 * The decimal value is used in formatting fractions of seconds. If the
728 * the decimal string is ",". Then the resulting pattern is modified to be
731 * @param decimal The decimal to set to.
733 public void setDecimal(String decimal) { argument
735 this.decimal = decimal;
740 * @return string corresponding to the decimal point
743 return decimal;
1563 private String decimal = "?"; field in class:DateTimePatternGenerator
[all...]
H A DDecimalFormat.java42 * decimal numbers. It has a variety of features designed to make it possible to parse and
179 * <td>Decimal separator or monetary decimal separator
225 * If present in a pattern, the monetary decimal separator
226 * is used instead of the decimal separator.
253 * separators, decimal separators, etc. may be set to arbitrary values, and they will
258 * decimal separator and thousands separator should be distinct characters, or parsing
313 * <li>Two grouping intervals are recognized: That between the decimal point and the first
329 * <p><code>DecimalFormat</code> parses all Unicode characters that represent decimal
350 * <code>DecimalFormat</code> internally limits of maximum decimal digits to be 1000. Thus,
351 * an input string resulting more than 1000 digits in plain decimal representatio
2812 getEquivalentDecimals(char decimal, boolean strictParse) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DDateTimePatternGenerator.java244 // decimal point for seconds
741 * The decimal value is used in formatting fractions of seconds. If the
745 * the decimal string is ",". Then the resulting pattern is modified to be
748 * @param decimal The decimal to set to.
751 public void setDecimal(String decimal) { argument
753 this.decimal = decimal;
758 * @return string corresponding to the decimal point
762 return decimal;
1590 private String decimal = "?"; field in class:DateTimePatternGenerator
[all...]
H A DDecimalFormat.java41 * decimal numbers. It has a variety of features designed to make it possible to parse and
178 * <td>Decimal separator or monetary decimal separator
224 * If present in a pattern, the monetary decimal separator
225 * is used instead of the decimal separator.
252 * separators, decimal separators, etc. may be set to arbitrary values, and they will
257 * decimal separator and thousands separator should be distinct characters, or parsing
312 * <li>Two grouping intervals are recognized: That between the decimal point and the first
328 * <p><code>DecimalFormat</code> parses all Unicode characters that represent decimal
349 * <code>DecimalFormat</code> internally limits of maximum decimal digits to be 1000. Thus,
350 * an input string resulting more than 1000 digits in plain decimal representatio
2826 getEquivalentDecimals(char decimal, boolean strictParse) argument
[all...]
/external/libxml2/
H A Dxmlschemastypes.c120 xmlSchemaValDecimal decimal; member in union:_xmlSchemaVal::__anon11874
249 ret->val->value.decimal.lo = value;
470 xmlSchemaTypeDecimalDef = xmlSchemaInitBasicType("decimal",
1262 * 2-digits integer part and may or may not have a decimal part.
1519 * then it must have an integer part and a decimal part; @num_type will
1520 * be set to 1. If there is no decimal part, @num_type is set to zero.
2270 * xs:decimal has a whitespace-facet value of 'collapse'.
2293 * and note the position of a decimal point.
2360 &v->value.decimal.lo,
2361 &v->value.decimal
[all...]
/external/pdfium/xfa/src/fgas/src/localization/
H A Dfx_locale.cpp38 {0x54034c2f, L"decimal", FX_LOCALENUMPATTERN_Decimal},
73 L"decimal", L"grouping", L"percent", L"minus",
2245 CFX_Decimal decimal = CFX_Decimal(wsValue); local
2247 decimal = decimal * CFX_Decimal(FXSYS_pow(10, (FX_FLOAT)iExponent));
2250 decimal = decimal / CFX_Decimal(100);
2252 wsValue = decimal;
3023 CFX_Decimal decimal = CFX_Decimal(wsSrcNum); local
3025 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/testng/ant/3rdparty/
H A Dcobertura.jarMETA-INF/ META-INF/MANIFEST.MF net/ net/sourceforge/ net/sourceforge/cobertura/ net/sourceforge/cobertura/ant/ ...
/external/robolectric/v1/lib/main/
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/libgdx/backends/gdx-backend-moe/libs/
H A Dintel-moe-core.jarMETA-INF/ META-INF/MANIFEST.MF LICENSE SQLite/ SQLite/Authorizer.class Authorizer.java package ...
/external/libgdx/backends/gdx-backend-android/libs/
H A Dandroid-4.4.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 1502 milliseconds

12