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.cpp82 ASSERT_IN_SET(decimals, dfs.getConstSymbol(DecimalFormatSymbols::kDecimalSeparatorSymbol)); in testSetCoverage()
83 ASSERT_IN_SET(grouping, dfs.getConstSymbol(DecimalFormatSymbols::kGroupingSeparatorSymbol)); in testSetCoverage()
84 ASSERT_IN_SET(plusSign, dfs.getConstSymbol(DecimalFormatSymbols::kPlusSignSymbol)); in testSetCoverage()
85 ASSERT_IN_SET(minusSign, dfs.getConstSymbol(DecimalFormatSymbols::kMinusSignSymbol)); in testSetCoverage()
86 ASSERT_IN_SET(percent, dfs.getConstSymbol(DecimalFormatSymbols::kPercentSymbol)); in testSetCoverage()
87 ASSERT_IN_SET(permille, dfs.getConstSymbol(DecimalFormatSymbols::kPerMillSymbol)); in testSetCoverage()
88 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.cpp98 …: SymbolMatcher(dfs.getConstSymbol(DecimalFormatSymbols::kInfinitySymbol), unisets::INFINITY_SIGN)… in InfinityMatcher()
112 … : SymbolMatcher(dfs.getConstSymbol(DecimalFormatSymbols::kMinusSignSymbol), unisets::MINUS_SIGN), in MinusSignMatcher()
127 : SymbolMatcher(dfs.getConstSymbol(DecimalFormatSymbols::kNaNSymbol), unisets::EMPTY) { in NanMatcher()
157 … : SymbolMatcher(dfs.getConstSymbol(DecimalFormatSymbols::kPercentSymbol), unisets::PERCENT_SIGN) { in PercentMatcher()
171 …: SymbolMatcher(dfs.getConstSymbol(DecimalFormatSymbols::kPerMillSymbol), unisets::PERMILLE_SIGN) { in PermilleMatcher()
185 … : SymbolMatcher(dfs.getConstSymbol(DecimalFormatSymbols::kPlusSignSymbol), unisets::PLUS_SIGN), in PlusSignMatcher()
Dnumparse_scientific.cpp36 : fExponentSeparatorString(dfs.getConstSymbol(DecimalFormatSymbols::kExponentialSymbol)), in ScientificMatcher()
40 const UnicodeString& minusSign = dfs.getConstSymbol(DecimalFormatSymbols::kMinusSignSymbol); in ScientificMatcher()
47 const UnicodeString& plusSign = dfs.getConstSymbol(DecimalFormatSymbols::kPlusSignSymbol); in ScientificMatcher()
Dnumber_patternstring.cpp873 table[0][localIdx] = symbols.getConstSymbol(DecimalFormatSymbols::kPercentSymbol); in convertLocalized()
875 table[1][localIdx] = symbols.getConstSymbol(DecimalFormatSymbols::kPerMillSymbol); in convertLocalized()
877 table[2][localIdx] = symbols.getConstSymbol(DecimalFormatSymbols::kDecimalSeparatorSymbol); in convertLocalized()
879 table[3][localIdx] = symbols.getConstSymbol(DecimalFormatSymbols::kGroupingSeparatorSymbol); in convertLocalized()
881 table[4][localIdx] = symbols.getConstSymbol(DecimalFormatSymbols::kMinusSignSymbol); in convertLocalized()
883 table[5][localIdx] = symbols.getConstSymbol(DecimalFormatSymbols::kPlusSignSymbol); in convertLocalized()
885 table[6][localIdx] = symbols.getConstSymbol(DecimalFormatSymbols::kPatternSeparatorSymbol); in convertLocalized()
887 table[7][localIdx] = symbols.getConstSymbol(DecimalFormatSymbols::kSignificantDigitSymbol); in convertLocalized()
889 table[8][localIdx] = symbols.getConstSymbol(DecimalFormatSymbols::kExponentialSymbol); in convertLocalized()
891 table[9][localIdx] = symbols.getConstSymbol(DecimalFormatSymbols::kPadEscapeSymbol); in convertLocalized()
[all …]
Dnumparse_decimal.cpp29 …groupingSeparator = symbols.getConstSymbol(DecimalFormatSymbols::kMonetaryGroupingSeparatorSymbol); in DecimalMatcher()
30 decimalSeparator = symbols.getConstSymbol(DecimalFormatSymbols::kMonetarySeparatorSymbol); in DecimalMatcher()
32 groupingSeparator = symbols.getConstSymbol(DecimalFormatSymbols::kGroupingSeparatorSymbol); in DecimalMatcher()
33 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.cpp1755 …const UnicodeString& groupingString = fields->symbols->getConstSymbol(DecimalFormatSymbols::kGroup… in setupFastFormat()
1781 …const UnicodeString& minusSignString = fields->symbols->getConstSymbol(DecimalFormatSymbols::kMinu… in setupFastFormat()
Dunum.cpp800 getConstSymbol((DecimalFormatSymbols::ENumberFormatSymbol)symbol). in unum_getSymbol()
/external/icu/icu4c/source/i18n/unicode/
Ddcfmtsym.h419 inline const UnicodeString& getConstSymbol(ENumberFormatSymbol symbol) const;
511 DecimalFormatSymbols::getConstSymbol(ENumberFormatSymbol symbol) const { in getConstSymbol() function