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"
363 NATIVE_METHOD(NativeDecimalFormat, applyPatternImpl, "(JZLjava/lang/String;)V"),
364 NATIVE_METHOD(NativeDecimalFormat, cloneImpl, "(J)J"),
365 NATIVE_METHOD(NativeDecimalFormat, close, "(J)V"),
366 NATIVE_METHOD(NativeDecimalFormat, formatDouble, "(JDLlibcore/icu/NativeDecimalFormat$FieldPositionIterator;)[C"),
367 NATIVE_METHOD(NativeDecimalFormat, formatLong, "(JJLlibcore/icu/NativeDecimalFormat$FieldPositionIterator;)[C"),
368 NATIVE_METHOD(NativeDecimalFormat, formatDigitList, "(JLjava/lang/String;Llibcore/icu/NativeDecimalFormat$FieldPositionIterator;)[C")
    [all...]
  /libcore/luni/src/main/java/libcore/icu/
NativeDecimalFormat.java 31 public final class NativeDecimalFormat implements Cloneable {
154 public NativeDecimalFormat(String pattern, DecimalFormatSymbols dfs) {
171 public NativeDecimalFormat(String pattern, LocaleData data) {
197 NativeDecimalFormat clone = (NativeDecimalFormat) super.clone();
225 if (!(object instanceof NativeDecimalFormat)) {
228 NativeDecimalFormat obj = (NativeDecimalFormat) object;
  /libcore/luni/src/main/java/java/text/
DecimalFormat.java 30 import libcore.icu.NativeDecimalFormat;
510 private transient NativeDecimalFormat ndf;
562 this.ndf = new NativeDecimalFormat(pattern, symbols);
617 clone.ndf = (NativeDecimalFormat) ndf.clone();
    [all...]
  /libcore/luni/src/main/java/java/util/
Formatter.java 34 import libcore.icu.NativeDecimalFormat;
558 public NativeDecimalFormat decimalFormat;
565 public NativeDecimalFormat update(LocaleData localeData, String pattern) {
569 decimalFormat = new NativeDecimalFormat(currentPattern, currentLocaleData);
593 private NativeDecimalFormat getDecimalFormat(String pattern) {
    [all...]

Completed in 731 milliseconds