Home | History | Annotate | Download | only in text

Lines Matching refs:localized

57  * easily localized.
74 * Print out a number using the localized number, currency, and percent
109 * Print out a number using the localized number, currency, percent,
141 * character is replaced by a localized digit. Often the replacement character is the
152 * <p>The characters listed here are used in non-localized patterns. Localized patterns
155 * Two exceptions are the currency sign and quote, which are not localized.
159 * location, localized, and meaning.">
163 * <th align=left>Localized?
210 * <td>Prefix positive exponents with localized plus sign.
256 * localized minus sign prefixed to the positive subpattern. That is, "0.00" alone is
342 * starting with the localized zero digit defined in the {@link DecimalFormatSymbols}
419 * localized minus sign, <em>not</em> the prefix and suffix from the pattern. This allows
420 * patterns such as "0.###E0 m/s". To prefix positive exponents with a localized plus
422 * "1E+1", "1E+0", "1E-1", etc. (In localized patterns, use the localized plus sign
551 * unlocalized patterns, and can be localized using {@link
665 * @param pattern A non-localized pattern string.
695 * @param pattern a non-localized pattern string
740 * @param pattern a non-localized pattern string
3711 * @return true if the exponent is always prefixed with either the localized minus
3712 * sign or the localized plus sign, false if only negative exponents are prefixed with
3713 * the localized minus sign.
3729 * localized minus sign or the localized plus sign, false if only negative exponents
3730 * are prefixed with the localized minus sign.
4055 * Synthesizes a localized pattern string that represents the current state of this
4401 * <b>Note:</b> This implementation does not support new String localized symbols.
4404 boolean localized) {
4433 if (!localized) {
4473 * <b>Note:</b> This implementation does not support new String localized symbols.
4475 private String toPattern(boolean localized) {
4477 char zero = localized ? symbols.getZeroDigit() : PATTERN_ZERO_DIGIT;
4478 char digit = localized ? symbols.getDigit() : PATTERN_DIGIT;
4482 sigDigit = localized ? symbols.getSignificantDigit() : PATTERN_SIGNIFICANT_DIGIT;
4484 char group = localized ? symbols.getGroupingSeparator() : PATTERN_GROUPING_SEPARATOR;
4490 ? new StringBuffer(2).append(localized
4507 appendAffixPattern(result, part != 0, true, localized);
4556 result.append(localized
4571 if (localized) {
4577 result.append(localized ? symbols.getPlusSign() : PATTERN_PLUS_SIGN);
4607 appendAffixPattern(result, part != 0, false, localized);
4616 result.append(localized ? symbols.getPatternSeparator() : PATTERN_SEPARATOR);
4648 * localized notation. A pattern is a short-hand specification for the various
4673 private void applyPattern(String pattern, boolean localized) {
4674 applyPatternWithoutExpandAffix(pattern, localized);
4689 private void applyPatternWithoutExpandAffix(String pattern, boolean localized) {
4702 if (localized) {
4801 // Bug 4212072 process the Localized pattern like
4894 // Bug 4212072 process the Localized pattern like
4958 // Convert to non-localized pattern
4962 // Convert to non-localized pattern
5934 * The CURRENCY_SIGN is not localized.