Home | History | Annotate | Download | only in text

Lines Matching defs:digits

135      * {@icu} Returns a DecimalFormatSymbols instance for the given locale with digits and symbols
155 * {@icu} Returns a DecimalFormatSymbols instance for the given locale with digits and symbols
223 * Returns the array of characters used as digits, in order from 0 through 9
230 return digits.clone();
246 // digitStrings or digits might be referencing a cached copy for
249 digits = digits.clone();
251 // Make digitStrings field and digits field in sync
253 digits[0] = zeroDigit;
255 // Always propagate to digits 1-9 for JDK and ICU4C consistency.
259 digits[i] = d;
267 * {@icu} Returns the array of strings used as digits, in order from 0 through 9
277 * Returns the array of strings used as digits, in order from 0 through 9
307 * {@icu} Sets the array of strings used as digits, in order from 0 through 9
313 * the default digits ('0' - '9') and {@link #getZeroDigit()} will return the
377 this.digits = DEF_DIGIT_CHARS_ARRAY;
380 this.digits = tmpDigits;
1223 if ( other.digits == null ) {
1225 if (digits[i] != other.zeroDigit + i) {
1229 } else if (!Arrays.equals(digits,other.digits)) {
1261 int result = digits[0];
1289 * Default digits
1378 setDigitStrings(data.digits);
1432 // Attempt to set the decimal digits based on the numbering system for the requested locale.
1434 String[] digits = new String[10];
1442 digits[i] = digitString.substring(offset, nextOffset);
1448 digits = DEF_DIGIT_STRINGS_ARRAY;
1498 return new CacheData(validLocale, digits, numberElements);
1580 // String version of digits
1583 if (digits != null && digits.length == 10) {
1584 zeroDigit = digits[0];
1586 digitStrings[i] = String.valueOf(digits[i]);
1590 if (digits == null) {
1591 digits = new char[10];
1594 digits[i] = digit;
1633 * purposes. The digits array below is now used to actively store the digits.
1641 * Array of characters used for the digits 0-9 in order.
1643 private char digits[];
1646 * Array of Strings used for the digits 0-9 in order.
2016 final String[] digits;
2019 public CacheData(ULocale loc, String[] digits, String[] numberElements) {
2021 this.digits = digits;