HomeSort by relevance Sort by last modified time
    Searched full:decimal (Results 226 - 250 of 2089) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/icu/icu4c/source/i18n/unicode/
fmtable.h 126 * a decimal number in string form. The Formattable will retain the
127 * full precision of the input in decimal format, even when it exceeds
131 * of the Decimal number.
134 * decimal number.
299 * long, int64 or Decimal Number then a conversion is peformed, with
480 * For values obtained by parsing, the returned decimal number retains
571 * Sets the the numeric value from a decimal number string, and changes
574 * as defined in the Decimal Arithmetic Specification, available at
575 * http://speleotrove.com/decimal
579 * @param numberString a string representation of the unformatted decimal number
    [all...]
unum.h 39 * for decimal points, thousands-separators, or even the particular
40 * decimal digits used, or whether the number format is even decimal.
41 * There are different number format styles like decimal, currency,
121 * <li>(b) align the decimal point and other areas.
140 * Decimal format defined by a pattern string.
145 * Decimal format ("normal" style).
505 * Format a decimal number using a UNumberFormat.
508 * as defined in the Decimal Arithmetic Specification, available at
509 * http://speleotrove.com/decimal
    [all...]
decimfmt.h 31 * \brief C++ API: Formats decimal numbers.
71 * DecimalFormat is a concrete subclass of NumberFormat that formats decimal
214 * <td>Decimal separator or monetary decimal separator
260 * If present in a pattern, the monetary decimal separator
261 * is used instead of the decimal separator.
288 * thousands separators, decimal separators, etc. may be set to arbitrary
294 * decimal separator and thousands separator should be distinct characters, or
349 * decimal point and the first grouping symbol, and that
366 * decimal digits, as defined by u_charDigitValue(). In addition
    [all...]
  /external/qemu/android/utils/
misc.h 60 /** DECIMAL AND HEXADECIMAL CHARACTER SEQUENCES
120 * name - Parameter name. Parameter value must be a decimal number.
124 * format was bad (i.e. value was not a decimal number).
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/decimaltestdata/
testall.decTest 2 -- testall.decTest -- run all general decimal arithmetic testcases --
5 -- Please see the document "General Decimal Arithmetic Testcases" --
6 -- at http://www2.hursley.ibm.com/decimal for the description of --
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/decimaltestdata/
testall.decTest 2 -- testall.decTest -- run all general decimal arithmetic testcases --
5 -- Please see the document "General Decimal Arithmetic Testcases" --
6 -- at http://www2.hursley.ibm.com/decimal for the description of --
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XNumber.java 168 // // significant digits = end - start + (0 or 1 depending on decimal location)
202 // // clarify decimal location if it has not yet been found
206 // // if decimal is not between start and end, add one to sigDig
240 // // and moving the decimal place
258 // // get the number of digits right of the decimal
  /libcore/luni/src/main/java/javax/sql/
RowSetMetaData.java 207 * Sets the number of decimal digits for a specified column in the {@code
214 * the number of decimal digits.
222 * Declares how many decimal digits there should be after a decimal point
229 * the number of digits after the decimal point.
  /packages/apps/Mms/src/com/android/mms/dom/smil/
TimeImpl.java 195 * Value ::= Number ("." Decimal)? (Text)?
197 * Decimal ::= DIGIT+; any positive number
203 * @param parseDecimal Whether Decimal is expected
205 * @throws IllegalArgumentException if Decimal was not expected but encountered
215 throw new IllegalArgumentException("int value contains decimal");
  /libcore/luni/src/main/java/java/math/
BigDecimal.java 28 * An immutable arbitrary-precision signed decimal.
227 * Represent the number of decimal digits in the unscaled value. This
263 * contain a valid string representation of a big decimal.
288 // Accumulating all digits until a possible decimal point
301 // A decimal point was found
367 * contain a valid string representation of a big decimal.
370 * UNNECESSARY} and the new big decimal cannot be represented
387 * of a big decimal.
405 * of a big decimal.
408 * UNNECESSARY} and the new big decimal cannot be represente
    [all...]
MathContext.java 34 * decimal precision format: 34 digit precision and
40 * A {@code MathContext} which corresponds to the <a href="http://en.wikipedia.org/wiki/IEEE_754-1985">IEEE 754</a> single decimal
47 * A {@code MathContext} which corresponds to the <a href="http://en.wikipedia.org/wiki/IEEE_754-1985">IEEE 754</a> double decimal
  /external/chromium_org/third_party/icu/source/i18n/unicode/
unum.h 38 * for decimal points, thousands-separators, or even the particular
39 * decimal digits used, or whether the number format is even decimal.
40 * There are different number format styles like decimal, currency,
120 * <li>(b) align the decimal point and other areas.
139 * Decimal format defined by a pattern string.
144 * Decimal format ("normal" style).
496 * Format a decimal number using a UNumberFormat.
499 * as defined in the Decimal Arithmetic Specification, available at
500 * http://speleotrove.com/decimal
    [all...]
decimfmt.h 31 * \brief C++ API: Formats decimal numbers.
71 * DecimalFormat is a concrete subclass of NumberFormat that formats decimal
214 * <td>Decimal separator or monetary decimal separator
260 * If present in a pattern, the monetary decimal separator
261 * is used instead of the decimal separator.
288 * thousands separators, decimal separators, etc. may be set to arbitrary
294 * decimal separator and thousands separator should be distinct characters, or
349 * decimal point and the first grouping symbol, and that
366 * decimal digits, as defined by u_charDigitValue(). In addition
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
DateTimeEditElement.cpp 359 const Decimal decimalMsPerDay(static_cast<int>(msPerDay));
360 Decimal hourPartOfMinimum = (stepRange().minimum().abs().remainder(decimalMsPerDay) / static_cast<int>(msPerHour)).floor();
369 const Decimal decimalMsPerSecond(static_cast<int>(msPerSecond));
378 const Decimal decimalMsPerHour(static_cast<int>(msPerHour));
379 Decimal minutePartOfMinimum = (stepRange().minimum().abs().remainder(decimalMsPerHour) / static_cast<int>(msPerMinute)).floor();
388 const Decimal decimalMsPerMinute(static_cast<int>(msPerMinute));
389 Decimal secondPartOfMinimum = (stepRange().minimum().abs().remainder(decimalMsPerMinute) / static_cast<int>(msPerSecond)).floor();
418 const Decimal msPerFieldUnitDecimal(static_cast<int>(msPerFieldUnit));
419 const Decimal msPerFieldSizeDecimal(static_cast<int>(msPerFieldSize));
420 Decimal stepMilliseconds = stepRange().step()
    [all...]
  /external/icu/icu4c/source/i18n/
decimalformatpattern.cpp 214 // Process the digits, decimal, and grouping characters. We
220 // of characters), as is the position of the decimal point,
222 // decimal point, then there should be no right digits.
259 // Grouping separator after decimal
260 debug("Grouping separator after decimal")
270 // Multiple decimal separators
271 debug("Multiple decimal separators")
515 // Do syntax checking on the digits, decimal points, and quotes.
564 // The effectiveDecimalPos is the position the decimal is at or
565 // would be at if there is no decimal. Note that i
    [all...]
dcfmtsym.cpp 59 // Initializes this with the decimal format symbols in the default locale.
69 // Initializes this with the decimal format symbols in the desired locale.
165 "decimal",
287 // If monetary decimal or grouping were not explicitly set, then set them to be the
396 fSymbols[kDecimalSeparatorSymbol] = (UChar)0x2e; // '.' decimal separator
415 fSymbols[kMonetarySeparatorSymbol] = (UChar)0x2e; // '.' monetary decimal separator
  /cts/tools/tradefed-host/res/report/
cts_result.xsd 45 <xs:attribute name="screen_density" type="xs:decimal"/>
56 <xs:attribute name="Xdpi" type="xs:decimal"/>
57 <xs:attribute name="Ydpi" type="xs:decimal"/>
237 <xs:extension base="xs:decimal">
241 <xs:attribute name="target" type="xs:decimal" />
252 <xs:element name="Value" type="xs:decimal" minOccurs="0" maxOccurs="unbounded" />
  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
double-conversion.cc 213 // Find a sufficiently precise decimal representation of n.
249 // Add space for digit before the decimal point and the '\0' character.
296 // Find a sufficiently precise decimal representation of n.
315 // decimal point after the first digit.
413 // Maximum number of significant digits in decimal representation.
414 // The longest possible double in decimal representation is
  /external/chromium_org/third_party/icu/source/i18n/
dcfmtsym.cpp 59 // Initializes this with the decimal format symbols in the default locale.
69 // Initializes this with the decimal format symbols in the desired locale.
165 "decimal",
287 // If monetary decimal or grouping were not explicitly set, then set them to be the
396 fSymbols[kDecimalSeparatorSymbol] = (UChar)0x2e; // '.' decimal separator
415 fSymbols[kMonetarySeparatorSymbol] = (UChar)0x2e; // '.' monetary decimal separator
  /external/chromium_org/third_party/skia/third_party/lua/src/
llex.c 209 ** in case of format error, try to change decimal point separator to
215 buffreplace(ls, old, ls->decpoint); /* try new decimal separator */
217 /* format error with correct decimal point: no more options */
244 buffreplace(ls, '.', ls->decpoint); /* follow locale for decimal point */
246 trydecpoint(ls, seminfo); /* try to update decimal point separator */
335 escerror(ls, c, i, "decimal escape too large");
  /external/pcre/dist/doc/
pcresyntax.3 48 \ed a decimal digit
49 \eD a character that is not a decimal digit
95 Nd Decimal number
278 digit decimal digit
386 (*LIMIT_MATCH=d) set the match limit to d (decimal number)
387 (*LIMIT_RECURSION=d) set the recursion limit to d (decimal number)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/
__init__.py 71 >>> from decimal import Decimal
72 >>> json.loads('1.1', parse_float=Decimal) == Decimal('1.1')
319 for JSON floats (e.g. decimal.Decimal).
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
__init__.py 71 >>> from decimal import Decimal
72 >>> json.loads('1.1', parse_float=Decimal) == Decimal('1.1')
319 for JSON floats (e.g. decimal.Decimal).
  /external/bison/lib/
float.in.h 37 /* Number of decimal digits that is sufficient for representing a number. */
70 /* Number of decimal digits that is sufficient for representing a number. */
129 is too large. Apparently a bug in GCC decimal-to-binary conversion.
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLEntityParser.cpp 169 Decimal,
204 entityState = Decimal;
242 case Decimal: {

Completed in 2502 milliseconds

1 2 3 4 5 6 7 8 91011>>