/libcore/ojluni/src/test/java/time/tck/java/time/format/ |
D | TCKDecimalStyle.java | 88 assertEquals(loc1.getZeroDigit(), '0'); in test_of_Locale() 98 assertEquals(loc1.getZeroDigit(), '0'); in test_STANDARD() 108 assertEquals(base.withZeroDigit('A').getZeroDigit(), 'A'); in test_zeroDigit()
|
/libcore/ojluni/src/main/java/java/time/format/ |
D | DecimalStyle.java | 167 char zeroDigit = oldSymbols.getZeroDigit(); in create() 202 public char getZeroDigit() { in getZeroDigit() method in DecimalStyle
|
D | DateTimeFormatterBuilder.java | 2587 buf.append(decimalStyle.getZeroDigit()); in format() 2956 buf.append(decimalStyle.getZeroDigit()); in format()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/ |
D | DecimalFormatSymbolsTest.java | 278 .getZeroDigit()); in test_getZeroDigit() 436 assertEquals("Set incorrect ZeroDigit symbol", '*', dfs.getZeroDigit()); in test_setZeroDigitC() 532 assertEquals('0', dfs.getZeroDigit()); in assertDecimalFormatSymbolsRIFrance()
|
/libcore/luni/src/test/java/libcore/java/text/ |
D | DecimalFormatSymbolsTest.java | 173 assertEquals(dfs.getZeroDigit(), icuSymb.getZeroDigit()); in compareDfs()
|
D | OldDecimalFormatSymbolsTest.java | 168 assertEquals('0', dfs.getZeroDigit()); in test_DecimalFormatSymbols_France()
|
D | NumberFormatTest.java | 83 assertEquals('\u0660', new DecimalFormatSymbols(arabic).getZeroDigit()); in test_numberLocalization()
|
/libcore/ojluni/src/main/java/java/text/ |
D | DecimalFormatSymbols.java | 164 public char getZeroDigit() { in getZeroDigit() method in DecimalFormatSymbols 825 result.setZeroDigit(dfs.getZeroDigit()); in fromIcuInstance() 892 fields.put("zeroDigit", getZeroDigit()); in writeObject()
|
D | SimpleDateFormat.java | 1647 zeroDigit = ((DecimalFormat)numberFormat).getDecimalFormatSymbols().getZeroDigit(); in zeroPaddingNumber()
|
/libcore/ojluni/annotations/hiddenapi/java/text/ |
D | DecimalFormatSymbols.java | 67 public char getZeroDigit() { in getZeroDigit() method in DecimalFormatSymbols
|
/libcore/luni/src/test/java/libcore/java/util/ |
D | LocaleTest.java | 1542 assertEquals('0', new DecimalFormatSymbols(ar_DZ).getZeroDigit()); in testArabicDigits() 1543 assertEquals('\u0660', new DecimalFormatSymbols(ar_DZ_arab).getZeroDigit()); in testArabicDigits() 1544 assertEquals('0', new DecimalFormatSymbols(ar_DZ_latn).getZeroDigit()); in testArabicDigits() 1550 assertEquals('\u0660', new DecimalFormatSymbols(ar_EG).getZeroDigit()); in testArabicDigits() 1551 assertEquals('\u0660', new DecimalFormatSymbols(ar_EG_arab).getZeroDigit()); in testArabicDigits() 1552 assertEquals('0', new DecimalFormatSymbols(ar_EG_latn).getZeroDigit()); in testArabicDigits()
|
/libcore/luni/src/main/java/libcore/icu/ |
D | LocaleData.java | 390 zeroDigit = dfs.getZeroDigit(); in initializeDecimalFormatData()
|
/libcore/ojluni/src/main/java/java/util/ |
D | Formatter.java | 2288 return dfs.getZeroDigit(); in getZero() 4409 return dfs.getZeroDigit();
|