Searched defs:symbols (Results 1 - 2 of 2) sorted by relevance

/libcore/luni/src/main/java/java/text/
H A DDecimalFormat.java65 * <em>symbols</em>. The pattern may be set directly using
68 * digits. The symbols are stored in a {@link DecimalFormatSymbols} object. When
69 * using the {@link NumberFormat} factory methods, the pattern and symbols are
79 * replacement is still happening, and if the symbols are modified, the grouping
206 * The prefixes, suffixes, and various symbols used for infinity, digits,
209 * be taken that the symbols and strings do not conflict, or parsing will be
271 * symbols. These intervals are identical in most locales, but in some locales
508 private transient DecimalFormatSymbols symbols; field in class:DecimalFormat
521 this.symbols = new DecimalFormatSymbols(locale);
550 this.symbols
[all...]
/libcore/luni/src/main/native/
H A Dlibcore_icu_NativeDecimalFormat.cpp106 icu::DecimalFormatSymbols* symbols = makeDecimalFormatSymbols(env, local
111 toDecimalFormat(addr)->adoptDecimalFormatSymbols(symbols);
126 icu::DecimalFormatSymbols* symbols = makeDecimalFormatSymbols(env, local
131 icu::DecimalFormat* fmt = new icu::DecimalFormat(pattern.unicodeString(), symbols, parseError, status);
133 delete symbols;

Completed in 55 milliseconds