HomeSort by relevance Sort by last modified time
    Searched refs:DecimalFormat (Results 151 - 175 of 236) sorted by null

1 2 3 4 5 67 8 910

  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
PluralFormatUnitTest.java 21 import android.icu.text.DecimalFormat;
393 pf2.setNumberFormat(new DecimalFormat("0.0", new DecimalFormatSymbols(ULocale.ENGLISH)));
TestMessageFormat.java 29 import android.icu.text.DecimalFormat;
51 DecimalFormat form = null;
107 // form = (DecimalFormat)NumberFormat.getCurrencyInstance(locale[i]);
108 form = (DecimalFormat)NumberFormat.getInstance(locale[i]);
    [all...]
  /external/icu/icu4c/source/test/intltest/
nmfmapts.cpp 233 NumberFormat *test = new DecimalFormat(status);
238 if(test->getDynamicClassID() != DecimalFormat::getStaticClassID()) {
uobjtest.cpp 591 if (dynamic_cast<DecimalFormat *>(nf) == NULL || dynamic_cast<ChoiceFormat *>(nf) != NULL) {
596 typeid(*nf) != typeid(DecimalFormat) || typeid(*nf) == typeid(ChoiceFormat) ||
dtfmapts.cpp 338 // DecimalFormat calling Format & NumberFormat API
340 logln("DecimalFormat");
342 DecimalFormat fmt(status);
355 errcheckln(status, "FAIL: Couldn't instantiate DecimalFormat, error %s. Quitting test", u_errorName(status));
tsdcfmsy.cpp 252 DecimalFormat df(pattern, sym, status);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
PluralFormat.java 618 if(numberFormat instanceof DecimalFormat) {
619 dec = ((DecimalFormat) numberFormat).getFixedDecimal(numberMinusOffset);
    [all...]
NFSubstitution.java 38 * The DecimalFormat this substitution uses to format its result,
41 final DecimalFormat numberFormat;
191 // DecimalFormat pattern, and initialize a DecimalFormat with
195 this.numberFormat = (DecimalFormat) ruleSet.owner.getDecimalFormat().clone();
267 // the DecimalFormat it uses
281 * either ruleSet or decimalFormat, and inserts the result into
313 * either ruleSet or decimalFormat, and inserts the result into
339 // format() method or our DecimalFormat's format() method to
353 * is formatted using the rule set or DecimalFormat that thi
    [all...]
NumberFormat.java 109 * to a <code>DecimalFormat</code>. This will work for the vast majority
123 * setDecimalSeparatorAlwaysShown on DecimalFormat.
157 * <h4>DecimalFormat</h4>
158 * <p>DecimalFormat is the concrete implementation of NumberFormat, and the
159 * NumberFormat API is essentially an abstraction from DecimalFormat's API.
160 * Refer to DecimalFormat for more information about this API.</p>
162 * see DecimalFormat
    [all...]
SimpleDateFormat.java 710 * @see DecimalFormat
    [all...]
  /external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/
SimpleDateFormatICU.java 230 if (nfmt instanceof com.ibm.icu.text.DecimalFormat) {
231 return DecimalFormatICU.wrap((com.ibm.icu.text.DecimalFormat)nfmt);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
PluralFormatUnitTest.java 20 import com.ibm.icu.text.DecimalFormat;
389 pf2.setNumberFormat(new DecimalFormat("0.0", new DecimalFormatSymbols(ULocale.ENGLISH)));
TestMessageFormat.java 28 import com.ibm.icu.text.DecimalFormat;
47 DecimalFormat form = null;
103 // form = (DecimalFormat)NumberFormat.getCurrencyInstance(locale[i]);
104 form = (DecimalFormat)NumberFormat.getInstance(locale[i]);
    [all...]
  /frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/engine/
Matrix.java 63 DecimalFormat df = new DecimalFormat(" ##0.000");
  /external/caliper/caliper/src/main/java/com/google/caliper/worker/
AllocationStats.java 30 import java.text.DecimalFormat;
  /external/icu/icu4c/source/i18n/
region.cpp 89 LocalPointer<DecimalFormat> df(new DecimalFormat(status), status);
511 LocalPointer<DecimalFormat> df(new DecimalFormat(pat,status), status);
msgfmt.cpp     [all...]
  /external/icu/icu4c/source/test/perf/howExpensiveIs/
howExpensiveIs.cpp 584 * unum_open .. with pattern, == new DecimalFormat(pattern)
619 DecimalFormat *d = new DecimalFormat(setupStatus);
648 ((const DecimalFormat*)fFmt)->format(fExpect, buf, NULL, setupStatus);
670 ((const DecimalFormat*)fFmt)->format(fExpect, buf, NULL, setupStatus);
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemNumber.java 23 import java.text.DecimalFormat;
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/serializable/
FormatTests.java 29 import android.icu.text.DecimalFormat;
1000 private static DecimalFormat getCannedDecimalFormat(String pattern, ULocale uloc)
1002 return new DecimalFormat(pattern, getCannedDecimalFormatSymbols(uloc));
1078 * will match the ICU 3.6 objects is to generate DecimalFormat objects
1107 DecimalFormat formats[] = new DecimalFormat[locales.length];
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/
FormatTests.java 28 import com.ibm.icu.text.DecimalFormat;
999 private static DecimalFormat getCannedDecimalFormat(String pattern, ULocale uloc)
1001 return new DecimalFormat(pattern, getCannedDecimalFormatSymbols(uloc));
1077 * will match the ICU 3.6 objects is to generate DecimalFormat objects
1106 DecimalFormat formats[] = new DecimalFormat[locales.length];
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
NFSubstitution.java 39 * The DecimalFormat this substitution uses to format its result,
42 final DecimalFormat numberFormat;
192 // DecimalFormat pattern, and initialize a DecimalFormat with
196 this.numberFormat = (DecimalFormat) ruleSet.owner.getDecimalFormat().clone();
268 // the DecimalFormat it uses
282 * either ruleSet or decimalFormat, and inserts the result into
314 * either ruleSet or decimalFormat, and inserts the result into
340 // format() method or our DecimalFormat's format() method to
354 * is formatted using the rule set or DecimalFormat that thi
    [all...]
NumberFormat.java 110 * to a <code>DecimalFormat</code>. This will work for the vast majority
124 * setDecimalSeparatorAlwaysShown on DecimalFormat.
158 * <h4>DecimalFormat</h4>
159 * <p>DecimalFormat is the concrete implementation of NumberFormat, and the
160 * NumberFormat API is essentially an abstraction from DecimalFormat's API.
161 * Refer to DecimalFormat for more information about this API.</p>
163 * see DecimalFormat
    [all...]
SimpleDateFormat.java 711 * @see DecimalFormat
    [all...]
  /external/testng/src/main/java/org/testng/reporters/
EmailableReporter.java 23 import java.text.DecimalFormat;
353 NumberFormat formatter = new DecimalFormat("#,##0.0");

Completed in 563 milliseconds

1 2 3 4 5 67 8 910