Lines Matching refs:symbol
258 inline UnicodeString getSymbol(ENumberFormatSymbol symbol) const;
272 …void setSymbol(ENumberFormatSymbol symbol, const UnicodeString &value, const UBool propogateDigits…
386 inline const UnicodeString &getConstSymbol(ENumberFormatSymbol symbol) const;
435 DecimalFormatSymbols::getSymbol(ENumberFormatSymbol symbol) const { in getSymbol() argument
437 if(symbol < kFormatSymbolCount) { in getSymbol()
438 strPtr = &fSymbols[symbol]; in getSymbol()
448 DecimalFormatSymbols::getConstSymbol(ENumberFormatSymbol symbol) const { in getConstSymbol() argument
450 if(symbol < kFormatSymbolCount) { in getConstSymbol()
451 strPtr = &fSymbols[symbol]; in getConstSymbol()
464 DecimalFormatSymbols::setSymbol(ENumberFormatSymbol symbol, const UnicodeString &value, const UBool…
465 if (symbol == kCurrencySymbol) {
468 else if (symbol == kIntlCurrencySymbol) {
471 if(symbol<kFormatSymbolCount) {
472 fSymbols[symbol]=value;
477 if ( propogateDigits && symbol == kZeroDigitSymbol && value.countChar32() == 1 ) {