Searched refs:icuDecfs (Results 1 – 4 of 4) sorted by relevance
/external/icu/icu4j/main/tests/localespi/src/com/ibm/icu/dev/test/localespi/ |
D | DecimalFormatSymbolsTest.java | 73 …com.ibm.icu.text.DecimalFormatSymbols icuDecfs = com.ibm.icu.text.DecimalFormatSymbols.getInstance… in TestICUEquivalent() local 76 com.ibm.icu.util.Currency icuCur = icuDecfs.getCurrency(); in TestICUEquivalent() 83 …checkEquivalence(jdkDecfs.getCurrencySymbol(), icuDecfs.getCurrencySymbol(), loc, "getCurrencySymb… in TestICUEquivalent() 84 …checkEquivalence(jdkDecfs.getDecimalSeparator(), icuDecfs.getDecimalSeparator(), loc, "getDecimalS… in TestICUEquivalent() 85 checkEquivalence(jdkDecfs.getDigit(), icuDecfs.getDigit(), loc, "getDigit"); in TestICUEquivalent() 86 …checkEquivalence(jdkDecfs.getExponentSeparator(), icuDecfs.getExponentSeparator(), loc, "getExpone… in TestICUEquivalent() 87 …checkEquivalence(jdkDecfs.getGroupingSeparator(), icuDecfs.getGroupingSeparator(), loc, "getGroupi… in TestICUEquivalent() 88 checkEquivalence(jdkDecfs.getInfinity(), icuDecfs.getInfinity(), loc, "getInfinity"); in TestICUEquivalent() 89 …checkEquivalence(jdkDecfs.getInternationalCurrencySymbol(), icuDecfs.getInternationalCurrencySymbo… in TestICUEquivalent() 90 checkEquivalence(jdkDecfs.getMinusSign(), icuDecfs.getMinusSign(), loc, "getMinusSign"); in TestICUEquivalent() [all …]
|
/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/ |
D | DecimalFormatICU.java | 259 com.ibm.icu.text.DecimalFormatSymbols icuDecfs = null; in setDecimalFormatSymbols() local 261 icuDecfs = ((DecimalFormatSymbolsICU)newSymbols).unwrap(); in setDecimalFormatSymbols() 263 icuDecfs = fIcuDecfmt.getDecimalFormatSymbols(); in setDecimalFormatSymbols() 267 icuDecfs.setCurrency(null); in setDecimalFormatSymbols() 269 … icuDecfs.setCurrency(com.ibm.icu.util.Currency.getInstance(currency.getCurrencyCode())); in setDecimalFormatSymbols() 273 icuDecfs.setCurrencySymbol(newSymbols.getCurrencySymbol()); in setDecimalFormatSymbols() 274 icuDecfs.setDecimalSeparator(newSymbols.getDecimalSeparator()); in setDecimalFormatSymbols() 275 icuDecfs.setDigit(newSymbols.getDigit()); in setDecimalFormatSymbols() 276 icuDecfs.setExponentSeparator(newSymbols.getExponentSeparator()); in setDecimalFormatSymbols() 277 icuDecfs.setGroupingSeparator(newSymbols.getGroupingSeparator()); in setDecimalFormatSymbols() [all …]
|
D | DecimalFormatSymbolsICU.java | 23 private DecimalFormatSymbolsICU(DecimalFormatSymbols icuDecfs) { in DecimalFormatSymbolsICU() argument 24 fIcuDecfs = icuDecfs; in DecimalFormatSymbolsICU() 27 public static java.text.DecimalFormatSymbols wrap(DecimalFormatSymbols icuDecfs) { in wrap() argument 28 return new DecimalFormatSymbolsICU(icuDecfs); in wrap()
|
/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/javaspi/text/ |
D | DecimalFormatSymbolsProviderICU.java | 21 …com.ibm.icu.text.DecimalFormatSymbols icuDecfs = com.ibm.icu.text.DecimalFormatSymbols.getInstance( in getInstance() local 23 return DecimalFormatSymbolsICU.wrap(icuDecfs); in getInstance()
|