Home
last modified time | relevance | path

Searched refs:getConstSymbol (Results 1 – 11 of 11) sorted by relevance

/external/icu/icu4c/source/test/intltest/
Dstatic_unisets_test.cpp79 ASSERT_IN_SET(decimals, dfs.getConstSymbol(DecimalFormatSymbols::kDecimalSeparatorSymbol)); in testSetCoverage()
80 ASSERT_IN_SET(grouping, dfs.getConstSymbol(DecimalFormatSymbols::kGroupingSeparatorSymbol)); in testSetCoverage()
81 ASSERT_IN_SET(plusSign, dfs.getConstSymbol(DecimalFormatSymbols::kPlusSignSymbol)); in testSetCoverage()
82 ASSERT_IN_SET(minusSign, dfs.getConstSymbol(DecimalFormatSymbols::kMinusSignSymbol)); in testSetCoverage()
83 ASSERT_IN_SET(percent, dfs.getConstSymbol(DecimalFormatSymbols::kPercentSymbol)); in testSetCoverage()
84 ASSERT_IN_SET(permille, dfs.getConstSymbol(DecimalFormatSymbols::kPerMillSymbol)); in testSetCoverage()
85 ASSERT_IN_SET(infinity, dfs.getConstSymbol(DecimalFormatSymbols::kInfinitySymbol)); in testSetCoverage()
Dnumbertest_affixutils.cpp26 … return fSymbols.getConstSymbol(DecimalFormatSymbols::ENumberFormatSymbol::kPlusSignSymbol); in getSymbol()
28 … return fSymbols.getConstSymbol(DecimalFormatSymbols::ENumberFormatSymbol::kPercentSymbol); in getSymbol()
30 … return fSymbols.getConstSymbol(DecimalFormatSymbols::ENumberFormatSymbol::kPerMillSymbol); in getSymbol()
/external/icu/icu4c/source/i18n/
Dnumparse_symbols.cpp93 …: SymbolMatcher(dfs.getConstSymbol(DecimalFormatSymbols::kInfinitySymbol), unisets::INFINITY_KEY) { in InfinityMatcher()
107 … : SymbolMatcher(dfs.getConstSymbol(DecimalFormatSymbols::kMinusSignSymbol), unisets::MINUS_SIGN), in MinusSignMatcher()
122 : SymbolMatcher(dfs.getConstSymbol(DecimalFormatSymbols::kNaNSymbol), unisets::EMPTY) { in NanMatcher()
152 … : SymbolMatcher(dfs.getConstSymbol(DecimalFormatSymbols::kPercentSymbol), unisets::PERCENT_SIGN) { in PercentMatcher()
166 …: SymbolMatcher(dfs.getConstSymbol(DecimalFormatSymbols::kPerMillSymbol), unisets::PERMILLE_SIGN) { in PermilleMatcher()
180 … : SymbolMatcher(dfs.getConstSymbol(DecimalFormatSymbols::kPlusSignSymbol), unisets::PLUS_SIGN), in PlusSignMatcher()
Dnumparse_scientific.cpp35 : fExponentSeparatorString(dfs.getConstSymbol(DecimalFormatSymbols::kExponentialSymbol)), in ScientificMatcher()
38 const UnicodeString& minusSign = dfs.getConstSymbol(DecimalFormatSymbols::kMinusSignSymbol); in ScientificMatcher()
45 const UnicodeString& plusSign = dfs.getConstSymbol(DecimalFormatSymbols::kPlusSignSymbol); in ScientificMatcher()
Dnumber_patternstring.cpp876 table[0][localIdx] = symbols.getConstSymbol(DecimalFormatSymbols::kPercentSymbol); in convertLocalized()
878 table[1][localIdx] = symbols.getConstSymbol(DecimalFormatSymbols::kPerMillSymbol); in convertLocalized()
880 table[2][localIdx] = symbols.getConstSymbol(DecimalFormatSymbols::kDecimalSeparatorSymbol); in convertLocalized()
882 table[3][localIdx] = symbols.getConstSymbol(DecimalFormatSymbols::kGroupingSeparatorSymbol); in convertLocalized()
884 table[4][localIdx] = symbols.getConstSymbol(DecimalFormatSymbols::kMinusSignSymbol); in convertLocalized()
886 table[5][localIdx] = symbols.getConstSymbol(DecimalFormatSymbols::kPlusSignSymbol); in convertLocalized()
888 table[6][localIdx] = symbols.getConstSymbol(DecimalFormatSymbols::kPatternSeparatorSymbol); in convertLocalized()
890 table[7][localIdx] = symbols.getConstSymbol(DecimalFormatSymbols::kSignificantDigitSymbol); in convertLocalized()
892 table[8][localIdx] = symbols.getConstSymbol(DecimalFormatSymbols::kExponentialSymbol); in convertLocalized()
894 table[9][localIdx] = symbols.getConstSymbol(DecimalFormatSymbols::kPadEscapeSymbol); in convertLocalized()
[all …]
Dnumparse_decimal.cpp28 …groupingSeparator = symbols.getConstSymbol(DecimalFormatSymbols::kMonetaryGroupingSeparatorSymbol); in DecimalMatcher()
29 decimalSeparator = symbols.getConstSymbol(DecimalFormatSymbols::kMonetarySeparatorSymbol); in DecimalMatcher()
31 groupingSeparator = symbols.getConstSymbol(DecimalFormatSymbols::kGroupingSeparatorSymbol); in DecimalMatcher()
32 decimalSeparator = symbols.getConstSymbol(DecimalFormatSymbols::kDecimalSeparatorSymbol); in DecimalMatcher()
Dnumber_currencysymbols.cpp31 fCurrencySymbol = symbols.getConstSymbol(DecimalFormatSymbols::kCurrencySymbol); in CurrencySymbols()
34 fIntlCurrencySymbol = symbols.getConstSymbol(DecimalFormatSymbols::kIntlCurrencySymbol); in CurrencySymbols()
Dscientificnumberformatter.cpp297 preExponent.append(dfs.getConstSymbol( in getPreExponent()
299 preExponent.append(dfs.getConstSymbol(DecimalFormatSymbols::kOneDigitSymbol)); in getPreExponent()
300 preExponent.append(dfs.getConstSymbol(DecimalFormatSymbols::kZeroDigitSymbol)); in getPreExponent()
Ddecimfmt.cpp1303 …const UnicodeString& groupingString = fields->symbols->getConstSymbol(DecimalFormatSymbols::kGroup… in setupFastFormat()
1329 …const UnicodeString& minusSignString = fields->symbols->getConstSymbol(DecimalFormatSymbols::kMinu… in setupFastFormat()
Dunum.cpp795 getConstSymbol((DecimalFormatSymbols::ENumberFormatSymbol)symbol). in unum_getSymbol()
/external/icu/icu4c/source/i18n/unicode/
Ddcfmtsym.h417 inline const UnicodeString& getConstSymbol(ENumberFormatSymbol symbol) const;
511 DecimalFormatSymbols::getConstSymbol(ENumberFormatSymbol symbol) const { in getConstSymbol() function