Lines Matching refs:symbol
15 * 08/26/97 aliu Added currency/intl currency symbol support.
54 * Symbol Meaning
85 * Constants for specifying a number format symbol.
105 /** The currency symbol */
107 /** The international currency symbol */
111 /** The exponential symbol */
113 /** Per mill symbol - replaces kPermillSymbol */
117 /** Infinity symbol */
119 /** Nan symbol */
121 /** Significant digit symbol
128 /** count symbol constants */
208 * Each symbol is stored as a string so that graphemes
211 * @param symbol Constant to indicate a number format symbol.
212 * @return the format symbols by the param 'symbol'
215 inline UnicodeString getSymbol(ENumberFormatSymbol symbol) const;
219 * Each symbol is stored as a string so that graphemes
222 * @param symbol Constant to indicate a number format symbol.
223 * @param value value of the format symbol
226 void setSymbol(ENumberFormatSymbol symbol, const UnicodeString &value);
248 * @param beforeCurrency : true if the pattern is for before currency symbol.
249 * false if the pattern is for after currency symbol.
265 * @param beforeCurrency : true if the pattern is for before currency symbol.
266 * false if the pattern is for after currency symbol.
324 * returning a const reference to one of the symbol strings.
325 * The returned reference becomes invalid when the symbol is changed
329 * @param symbol Constant to indicate a number format symbol.
330 * @return the format symbol by the param 'symbol'
333 inline const UnicodeString &getConstSymbol(ENumberFormatSymbol symbol) const;
343 * Private symbol strings.
345 * setSymbol() clones the symbol string.
360 * Non-symbol variable for getConstSymbol(). Always empty.
378 DecimalFormatSymbols::getSymbol(ENumberFormatSymbol symbol) const {
380 if(symbol < kFormatSymbolCount) {
381 strPtr = &fSymbols[symbol];
389 DecimalFormatSymbols::getConstSymbol(ENumberFormatSymbol symbol) const {
391 if(symbol < kFormatSymbolCount) {
392 strPtr = &fSymbols[symbol];
402 DecimalFormatSymbols::setSymbol(ENumberFormatSymbol symbol, const UnicodeString &value) {
403 if(symbol<kFormatSymbolCount) {
404 fSymbols[symbol]=value;