Home | History | Annotate | Download | only in text

Lines Matching defs:CURRENCY_SIGN

712         if (pattern.indexOf(CURRENCY_SIGN) >= 0) {
3124 case CURRENCY_SIGN:
3130 boolean intl = i < affixPat.length() && affixPat.charAt(i) == CURRENCY_SIGN;
3134 boolean plural = i < affixPat.length() && affixPat.charAt(i) == CURRENCY_SIGN;
4171 * CURRENCY_SIGN. If CURRENCY_SIGN is doubled, it is interpreted as an international
4172 * currency sign. If CURRENCY_SIGN is tripled, it is interpreted as currency plural
4227 case CURRENCY_SIGN:
4231 boolean intl = i < pattern.length() && pattern.charAt(i) == CURRENCY_SIGN;
4235 if (i < pattern.length() && pattern.charAt(i) == CURRENCY_SIGN) {
4979 } else if (ch == CURRENCY_SIGN) {
4983 pattern.charAt(pos + 1) == CURRENCY_SIGN;
4991 pattern.charAt(pos + 1) == CURRENCY_SIGN) {
6033 * The CURRENCY_SIGN is the standard Unicode symbol for currency. It is used in
6035 * the international currency symbol. If the CURRENCY_SIGN is seen in a pattern, then
6038 * The CURRENCY_SIGN is not localized.
6040 private static final char CURRENCY_SIGN = '\u00A4';