HomeSort by relevance Sort by last modified time
    Searched refs:NativeDecimalFormat (Results 1 - 4 of 4) sorted by null

  /libcore/luni/src/main/native/
libcore_icu_NativeDecimalFormat.cpp 17 #define LOG_TAG "NativeDecimalFormat"
352 NATIVE_METHOD(NativeDecimalFormat, applyPatternImpl, "(IZLjava/lang/String;)V"),
353 NATIVE_METHOD(NativeDecimalFormat, cloneImpl, "(I)I"),
354 NATIVE_METHOD(NativeDecimalFormat, close, "(I)V"),
355 NATIVE_METHOD(NativeDecimalFormat, formatDouble, "(IDLlibcore/icu/NativeDecimalFormat$FieldPositionIterator;)[C"),
356 NATIVE_METHOD(NativeDecimalFormat, formatLong, "(IJLlibcore/icu/NativeDecimalFormat$FieldPositionIterator;)[C"),
357 NATIVE_METHOD(NativeDecimalFormat, formatDigitList, "(ILjava/lang/String;Llibcore/icu/NativeDecimalFormat$FieldPositionIterator;)[C")
    [all...]
  /libcore/luni/src/main/java/libcore/icu/
NativeDecimalFormat.java 32 public final class NativeDecimalFormat {
121 public NativeDecimalFormat(String pattern, DecimalFormatSymbols dfs) {
138 public NativeDecimalFormat(String pattern, LocaleData data) {
148 private NativeDecimalFormat(NativeDecimalFormat other) {
172 return new NativeDecimalFormat(this);
190 if (!(object instanceof NativeDecimalFormat)) {
193 NativeDecimalFormat obj = (NativeDecimalFormat) object;
  /libcore/luni/src/main/java/java/text/
DecimalFormat.java 30 import libcore.icu.NativeDecimalFormat;
504 private transient NativeDecimalFormat dform;
565 this.dform = new NativeDecimalFormat(pattern, symbols);
611 clone.dform = (NativeDecimalFormat) dform.clone();
    [all...]
  /libcore/luni/src/main/java/java/util/
Formatter.java 34 import libcore.icu.NativeDecimalFormat;
556 public NativeDecimalFormat decimalFormat;
563 public NativeDecimalFormat update(LocaleData localeData, String pattern) {
567 decimalFormat = new NativeDecimalFormat(currentPattern, currentLocaleData);
591 private NativeDecimalFormat getDecimalFormat(String pattern) {
    [all...]

Completed in 174 milliseconds