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

1 2 3 4 5 6 7 8 91011>>

  /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/icu4c/i18n/unicode/
unum.h 36 * for decimal points, thousands-separators, or even the particular
37 * decimal digits used, or whether the number format is even decimal.
38 * There are different number format styles like decimal, currency,
118 * <li>(b) align the decimal point and other areas.
137 * Decimal format defined by a pattern string.
142 * Decimal format ("normal" style).
485 * Format a decimal number using a UNumberFormat.
488 * as defined in the Decimal Arithmetic Specification, available at
489 * 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...]
dtptngen.h 376 * The decimal value is used in formatting fractions of seconds. If the
380 * the decimal string is ",". Then the resulting pattern is modified to be
383 * @param decimal
386 void setDecimal(const UnicodeString& decimal);
390 * @return UnicodeString corresponding to the decimal point
444 UnicodeString decimal; member in class:DateTimePatternGenerator
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
DateTimeEditElement.cpp 358 const Decimal decimalMsPerDay(static_cast<int>(msPerDay));
359 Decimal hourPartOfMinimum = (stepRange().minimum().abs().remainder(decimalMsPerDay) / static_cast<int>(msPerHour)).floor();
368 const Decimal decimalMsPerSecond(static_cast<int>(msPerSecond));
377 const Decimal decimalMsPerHour(static_cast<int>(msPerHour));
378 Decimal minutePartOfMinimum = (stepRange().minimum().abs().remainder(decimalMsPerHour) / static_cast<int>(msPerMinute)).floor();
387 const Decimal decimalMsPerMinute(static_cast<int>(msPerMinute));
388 Decimal secondPartOfMinimum = (stepRange().minimum().abs().remainder(decimalMsPerMinute) / static_cast<int>(msPerSecond)).floor();
417 const Decimal msPerFieldUnitDecimal(static_cast<int>(msPerFieldUnit));
418 const Decimal msPerFieldSizeDecimal(static_cast<int>(msPerFieldSize));
419 Decimal stepMilliseconds = stepRange().step()
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/unicode/
decimfmt.h 30 * \brief C++ API: Formats decimal numbers.
52 * DecimalFormat is a concrete subclass of NumberFormat that formats decimal
195 * <td>Decimal separator or monetary decimal separator
241 * If present in a pattern, the monetary decimal separator
242 * is used instead of the decimal separator.
269 * thousands separators, decimal separators, etc. may be set to arbitrary
275 * decimal separator and thousands separator should be distinct characters, or
330 * decimal point and the first grouping symbol, and that
347 * decimal digits, as defined by u_charDigitValue(). In addition
    [all...]
dtptngen.h 374 * The decimal value is used in formatting fractions of seconds. If the
378 * the decimal string is ",". Then the resulting pattern is modified to be
381 * @param decimal
384 void setDecimal(const UnicodeString& decimal);
388 * @return UnicodeString corresponding to the decimal point
442 UnicodeString decimal; member in class:DateTimePatternGenerator
  /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/testing/gmock/test/
gmock-generated-function-mockers_test.cc 84 virtual int Decimal(bool b, char c, short d, int e, long f, // NOLINT
127 MOCK_METHOD10(Decimal, int(bool, char, short, int, long, float, // NOLINT
201 // Tests mocking a decimal function.
203 EXPECT_CALL(mock_foo_, Decimal(true, 'a', 0, 0, 1L, A<float>(),
207 EXPECT_EQ(5, foo_->Decimal(true, 'a', 0, 0, 1, 0, 0, 5, NULL, "hi"));
292 // Tests mocking a decimal function with calltype.
  /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 57 // Initializes this with the decimal format symbols in the default locale.
67 // Initializes this with the decimal format symbols in the desired locale.
145 "decimal",
269 // If monetary decimal or grouping were not explicitly set, then set them to be the
386 fSymbols[kDecimalSeparatorSymbol] = (UChar)0x2e; // '.' decimal separator
405 fSymbols[kMonetarySeparatorSymbol] = (UChar)0x2e; // '.' monetary decimal separator
  /external/icu4c/i18n/
dcfmtsym.cpp 58 // Initializes this with the decimal format symbols in the default locale.
68 // Initializes this with the decimal format symbols in the desired locale.
157 "decimal",
280 // If monetary decimal or grouping were not explicitly set, then set them to be the
395 fSymbols[kDecimalSeparatorSymbol] = (UChar)0x2e; // '.' decimal separator
414 fSymbols[kMonetarySeparatorSymbol] = (UChar)0x2e; // '.' monetary decimal separator
  /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 168 Decimal,
203 entityState = Decimal;
241 case Decimal: {
  /external/chromium_org/third_party/icu/source/test/intltest/
tsdcfmsy.cpp 69 UnicodeString decimal = en.getSymbol(DecimalFormatSymbols::kDecimalSeparatorSymbol); local
70 fr.setSymbol(DecimalFormatSymbols::kDecimalSeparatorSymbol, decimal);
220 errln("ERROR: construction of decimal format failed");
  /external/icu4c/test/intltest/
tsdcfmsy.cpp 69 UnicodeString decimal = en.getSymbol(DecimalFormatSymbols::kDecimalSeparatorSymbol); local
70 fr.setSymbol(DecimalFormatSymbols::kDecimalSeparatorSymbol, decimal);
220 errln("ERROR: construction of decimal format failed");
  /external/libvpx/libvpx/examples/includes/geshi/geshi/
rebol.php 62 'binary!','block!','char!','date!','decimal!','email!','file!',
83 'cosine','datatype?','date?','debase','decimal?','decode-cgi',
115 'to-block','to-char','to-date','to-decimal','to-email','to-file',
  /libcore/luni/src/main/java/java/sql/
ResultSetMetaData.java 132 * Returns the decimal precision of the indexed column.
143 * Returns the number of digits to the right of the decimal point of the
148 * @return number of decimal places.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/decimaltestdata/
abs.decTest 2 -- abs.decTest -- decimal absolute value --
5 -- Please see the document "General Decimal Arithmetic Testcases" --
6 -- at http://www2.hursley.ibm.com/decimal for the description of --
nextminus.decTest 2 -- nextminus.decTest -- decimal next that is less [754r nextdown] --
5 -- Please see the document "General Decimal Arithmetic Testcases" --
6 -- at http://www2.hursley.ibm.com/decimal for the description of --

Completed in 1736 milliseconds

1 2 3 4 5 6 7 8 91011>>