Home
last modified time | relevance | path

Searched refs:getDecimalFormatSymbols (Results 1 – 8 of 8) sorted by relevance

/libcore/luni/src/test/java/libcore/java/text/
DDecimalFormatTest.java36 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 …]
DNumberFormatTest.java161 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/
DDecimalFormatSymbolsTest.java287 .getCurrencyInstance(locale)).getDecimalFormatSymbols(); in test_setCurrencyLjava_util_Currency()
370 .getCurrencyInstance(locale)).getDecimalFormatSymbols(); in test_setInternationalCurrencySymbolLjava_lang_String()
DDecimalFormatTest.java1024 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()
DMessageFormatTest.java486 …assertEquals(expectedNumberFormat.getDecimalFormatSymbols(), actualNumberFormat.getDecimalFormatSy… in test_applyPatternLjava_lang_String()
/libcore/luni/src/test/java/libcore/java/util/
DFormatterTest.java203 DecimalFormatSymbols symbols = decimalFormat.getDecimalFormatSymbols(); in testGroupingSizeZero()
/libcore/ojluni/src/main/java/java/text/
DDecimalFormat.java2631 public DecimalFormatSymbols getDecimalFormatSymbols() { in getDecimalFormatSymbols() method in DecimalFormat
2641 return DecimalFormatSymbols.fromIcuInstance(icuDecimalFormat.getDecimalFormatSymbols()); in getDecimalFormatSymbols()
DSimpleDateFormat.java1647 zeroDigit = ((DecimalFormat)numberFormat).getDecimalFormatSymbols().getZeroDigit(); in zeroPaddingNumber()
3054 … minusSign = ((DecimalFormat)numberFormat).getDecimalFormatSymbols().getMinusSign(); in checkNegativeNumberExpression()