Searched refs:zeroDigit (Results 1 - 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/java/text/
H A DDecimalFormatSymbols.java166 return zeroDigit;
172 public void setZeroDigit(char zeroDigit) { argument
173 this.zeroDigit = zeroDigit;
532 return (zeroDigit == other.zeroDigit &&
554 int result = zeroDigit;
591 values[4] = String.valueOf(localeData.zeroDigit);
608 zeroDigit = numberElements[4].charAt(0); //different for Arabic,etc.
689 cachedIcuDFS.setZeroDigit(zeroDigit);
879 private char zeroDigit; field in class:DecimalFormatSymbols
[all...]
H A DSimpleDateFormat.java475 transient private char zeroDigit; field in class:SimpleDateFormat
1344 if (zeroDigit == 0) {
1345 zeroDigit = ((DecimalFormat)numberFormat).getDecimalFormatSymbols().getZeroDigit();
1351 buffer.append(zeroDigit);
1353 buffer.append((char)(zeroDigit + value));
1355 buffer.append((char)(zeroDigit + value / 10));
1356 buffer.append((char)(zeroDigit + value % 10));
1361 buffer.append((char)(zeroDigit + value / 1000));
1363 buffer.append((char)(zeroDigit + value / 100));
1365 buffer.append((char)(zeroDigit
[all...]
/libcore/luni/src/main/java/libcore/icu/
H A DLocaleData.java98 public char zeroDigit; field in class:LocaleData

Completed in 249 milliseconds