Searched refs:getDecimalFormatSymbols (Results 1 – 8 of 8) sorted by relevance
/libcore/luni/src/test/java/libcore/java/text/ |
D | DecimalFormatTest.java | 36 DecimalFormatSymbols dfs = df.getDecimalFormatSymbols(); in test_exponentSeparator() 377 assertEquals("¥", decimalFormat.getDecimalFormatSymbols().getCurrencySymbol()); in testSetCurrencySymbol() 455 assertEquals("\u0609", df.getDecimalFormatSymbols().getPerMillString()); in testPerMill() 459 assertEquals('\u0609', df.getDecimalFormatSymbols().getPerMill()); in testPerMill() 472 assertEquals("0/00", df.getDecimalFormatSymbols().getPerMillString()); in testPerMill() 476 assertEquals('\u2030', df.getDecimalFormatSymbols().getPerMill()); in testPerMill() 512 assertEquals("\u066a\u061c", df.getDecimalFormatSymbols().getPercentString()); in testPercent() 518 assertEquals('\u066a', df.getDecimalFormatSymbols().getPercent()); in testPercent() 545 assertEquals("\u2212", df.getDecimalFormatSymbols().getMinusSignString()); in testMinusSign() 549 assertEquals('\u2212', df.getDecimalFormatSymbols().getMinusSign()); in testMinusSign() [all …]
|
D | NumberFormatTest.java | 161 DecimalFormatSymbols decimalFormatSymbols = ((DecimalFormat) nf).getDecimalFormatSymbols(); in test_issue79925() 182 DecimalFormatSymbols dfs = ((DecimalFormat) nf).getDecimalFormatSymbols(); in test_customCurrencySymbol()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/ |
D | DecimalFormatSymbolsTest.java | 287 .getCurrencyInstance(locale)).getDecimalFormatSymbols(); in test_setCurrencyLjava_util_Currency() 370 .getCurrencyInstance(locale)).getDecimalFormatSymbols(); in test_setInternationalCurrencySymbolLjava_lang_String()
|
D | DecimalFormatTest.java | 1024 assertEquals(cloned.getDecimalFormatSymbols(), format.getDecimalFormatSymbols()); in test_clone() 1731 DecimalFormatSymbols dfs = df.getDecimalFormatSymbols(); in test_getDecimalFormatSymbols() 1732 assertNotSame(dfs, df.getDecimalFormatSymbols()); in test_getDecimalFormatSymbols() 1884 assertTrue("Not set", df.getDecimalFormatSymbols().equals(dfs)); in test_setDecimalFormatSymbols() 1893 DecimalFormatSymbols symbolsOut = format.getDecimalFormatSymbols(); in test_setDecimalFormatSymbols() 1919 df.getDecimalFormatSymbols().getCurrencySymbol()); in test_setCurrency() 1921 df.getDecimalFormatSymbols().getInternationalCurrencySymbol()); in test_setCurrency() 1973 deserializedDF.getDecimalFormatSymbols()); in testSerializationHarmonyRICompatible()
|
D | MessageFormatTest.java | 486 …assertEquals(expectedNumberFormat.getDecimalFormatSymbols(), actualNumberFormat.getDecimalFormatSy… in test_applyPatternLjava_lang_String()
|
/libcore/luni/src/test/java/libcore/java/util/ |
D | FormatterTest.java | 203 DecimalFormatSymbols symbols = decimalFormat.getDecimalFormatSymbols(); in testGroupingSizeZero()
|
/libcore/ojluni/src/main/java/java/text/ |
D | DecimalFormat.java | 2631 public DecimalFormatSymbols getDecimalFormatSymbols() { in getDecimalFormatSymbols() method in DecimalFormat 2641 return DecimalFormatSymbols.fromIcuInstance(icuDecimalFormat.getDecimalFormatSymbols()); in getDecimalFormatSymbols()
|
D | SimpleDateFormat.java | 1647 zeroDigit = ((DecimalFormat)numberFormat).getDecimalFormatSymbols().getZeroDigit(); in zeroPaddingNumber() 3054 … minusSign = ((DecimalFormat)numberFormat).getDecimalFormatSymbols().getMinusSign(); in checkNegativeNumberExpression()
|