Lines Matching refs:digits

64  * locale, including support for Western, Arabic, and Indic digits.  It also
137 * serves only to specify the negative prefix and suffix; the number of digits,
138 * minimal digits, and other characteristics are all the same as the positive
142 * <p>The prefixes, suffixes, and various symbols used for infinity, digits,
155 * of digits between the grouping characters, such as 3 for 100,000,000 or 4 for
267 * <li>The minimum and maximum number of integer digits are interpreted
271 * <li>If the maximum number of integer digits is greater than their minimum number
273 * number of integer digits, and the minimum number of integer digits to be
280 * <li>Otherwise, the minimum number of integer digits is achieved by adjusting the
285 * <li>The number of significant digits in the mantissa is the sum of the
286 * <em>minimum integer</em> and <em>maximum fraction</em> digits, and is
287 * unaffected by the maximum integer digits. For example, 12345 formatted with
288 * <code>"##0.##E0"</code> is <code>"12.3E3"</code>. To show all digits, set
289 * the significant digits count to zero. The number of significant digits
305 * <code>DecimalFormatSymbols</code> object as digits. For parsing, these
306 * digits as well as all Unicode decimal digits, as defined by
504 // patterns do), then set the maximum integer digits to 2 billion.
848 * decimal digits, as defined by <code>Character.digit()</code>. In
849 * addition, <code>DecimalFormat</code> also recognizes as digits the ten
1078 * Return the grouping size. Grouping size is the number of digits between
1093 * Set the grouping size. Grouping size is the number of digits between
1274 * There is no limit to integer digits set
1279 * <P>This means a minimum of 2 integer digits, 1 fraction digit, and
1280 * a maximum of 2 fraction digits.
1303 * There is no limit to integer digits set
1308 * <P>This means a minimum of 2 integer digits, 1 fraction digit, and
1309 * a maximum of 2 fraction digits.
1328 * Sets the maximum number of digits allowed in the integer portion of a
1352 * Sets the minimum number of digits allowed in the integer portion of a
1376 * Sets the maximum number of digits allowed in the fraction portion of a
1400 * Sets the minimum number of digits allowed in the fraction portion of a
1424 * Gets the maximum number of digits allowed in the integer portion of a
1437 * Gets the minimum number of digits allowed in the integer portion of a
1450 * Gets the maximum number of digits allowed in the fraction portion of a
1463 * Gets the minimum number of digits allowed in the fraction portion of a
1493 * number of fraction digits used by the number format.
1511 // Giving the icuDecimalFormat a new currency will cause the fractional digits to be
1512 // updated. This class is specified to not touch the fraction digits, so we re-set them.
1582 * Adjusts the minimum and maximum fraction digits to values that
1583 * are reasonable for the currency's default fraction digits.
1594 int digits = currency.getDefaultFractionDigits();
1595 if (digits != -1) {
1600 setMinimumFractionDigits(digits);
1601 setMaximumFractionDigits(digits);
1603 setMinimumFractionDigits(Math.min(digits, oldMinDigits));
1604 setMaximumFractionDigits(digits);
1689 * the setters for the minimum and maximum integer and fraction digits with
1826 * The maximum number of digits allowed in the integer portion of a
1839 * The minimum number of digits allowed in the integer portion of a
1852 * The maximum number of digits allowed in the fractional portion of a
1865 * The minimum number of digits allowed in the fractional portion of a
1899 // Upper limit on integer and fraction digits for a Java double
1903 // Upper limit on integer and fraction digits for BigDecimal and BigInteger