Lines Matching refs:localized

64  * currency amounts ($123).  All of these can be localized.
86 * read from localized <code>ResourceBundle</code>s.
131 * localized minus sign (<code>'-'</code> in most locales) is used as the
166 * <p>The characters listed here are used in non-localized patterns. Localized
170 * are not localized.
174 * location, localized, and meaning.">
260 * formatted using the localized minus sign, <em>not</em> the prefix and suffix
300 * characters starting with the localized zero digit defined in the
338 * <strong>// Print out a number using the localized number, integer, currency,
424 * @param pattern A non-localized pattern string.
450 * @param pattern a non-localized pattern string
1250 * consecutive characters starting with the localized zero digit defined in
1961 * Synthesizes a localized pattern string that represents the current
2133 * @param localized true if the appended pattern should contain localized
2134 * pattern characters; otherwise, non-localized pattern chars are appended
2137 String expAffix, boolean localized) {
2139 appendAffix(buffer, expAffix, localized);
2145 appendAffix(buffer, affixPattern.substring(pos), localized);
2149 appendAffix(buffer, affixPattern.substring(pos, i), localized);
2162 } else if (localized) {
2185 private void appendAffix(StringBuffer buffer, String affix, boolean localized) {
2187 if (localized) {
2223 private String toPattern(boolean localized) {
2227 appendAffix(result, posPrefixPattern, positivePrefix, localized);
2228 else appendAffix(result, negPrefixPattern, negativePrefix, localized);
2236 result.append(localized ? symbols.getGroupingSeparator() :
2240 ? (localized ? symbols.getZeroDigit() : PATTERN_ZERO_DIGIT)
2241 : (localized ? symbols.getDigit() : PATTERN_DIGIT));
2244 result.append(localized ? symbols.getDecimalSeparator() :
2248 result.append(localized ? symbols.getZeroDigit() :
2251 result.append(localized ? symbols.getDigit() :
2257 result.append(localized ? symbols.getExponentSeparator() :
2260 result.append(localized ? symbols.getZeroDigit() :
2264 appendAffix(result, posSuffixPattern, positiveSuffix, localized);
2275 result.append(localized ? symbols.getPatternSeparator() :
2277 } else appendAffix(result, negSuffixPattern, negativeSuffix, localized);
2309 * is assumed to be in a localized notation. A pattern is a
2336 private void applyPattern(String pattern, boolean localized) {
2346 if (localized) {
3254 * The CURRENCY_SIGN is not localized.