Home | History | Annotate | Download | only in text

Lines Matching defs:CURRENCY_SIGN

711         if (pattern.indexOf(CURRENCY_SIGN) >= 0) {
3112 case CURRENCY_SIGN:
3118 boolean intl = i < affixPat.length() && affixPat.charAt(i) == CURRENCY_SIGN;
3122 boolean plural = i < affixPat.length() && affixPat.charAt(i) == CURRENCY_SIGN;
4108 * CURRENCY_SIGN. If CURRENCY_SIGN is doubled, it is interpreted as an international
4109 * currency sign. If CURRENCY_SIGN is tripled, it is interpreted as currency plural
4164 case CURRENCY_SIGN:
4168 boolean intl = i < pattern.length() && pattern.charAt(i) == CURRENCY_SIGN;
4172 if (i < pattern.length() && pattern.charAt(i) == CURRENCY_SIGN) {
4910 } else if (ch == CURRENCY_SIGN) {
4914 pattern.charAt(pos + 1) == CURRENCY_SIGN;
4922 pattern.charAt(pos + 1) == CURRENCY_SIGN) {
5929 * The CURRENCY_SIGN is the standard Unicode symbol for currency. It is used in
5931 * the international currency symbol. If the CURRENCY_SIGN is seen in a pattern, then
5934 * The CURRENCY_SIGN is not localized.
5936 private static final char CURRENCY_SIGN = '\u00A4';