HomeSort by relevance Sort by last modified time
    Searched defs:DecimalFormat (Results 1 - 8 of 8) sorted by null

  /external/icu/icu4c/source/i18n/unicode/
decimfmt.h 83 * DecimalFormat is a concrete subclass of NumberFormat that formats decimal
93 * createInstance(). Do not call the DecimalFormat constructors directly, unless
95 * return subclasses other than DecimalFormat.
132 * pattern = ((DecimalFormat*)form)->toPattern(pattern);
167 * <p>A DecimalFormat consists of a <em>pattern</em> and a set of
291 * <p>A DecimalFormat pattern contains a postive and negative
328 * DecimalFormat to set a failing UErrorCode.
379 * <p>DecimalFormat parses all Unicode characters that represent
381 * DecimalFormat also recognizes as digits the ten consecutive
452 * but it need not be. DecimalFormat supports arbitrary mantissas
    [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
DecimalFormat.java 28 * {@icuenhanced java.text.DecimalFormat}.{@icu _usage_}
30 * <code>DecimalFormat</code> is a concrete subclass of {@link NumberFormat} that formats
40 * NumberFormat#getInstance}. Do not call the <code>DecimalFormat</code> constructors
42 * methods may return subclasses other than <code>DecimalFormat</code>. If you need to
47 * if (f instanceof DecimalFormat) {
48 * ((DecimalFormat) f).setDecimalSeparatorAlwaysShown(true);
77 * // Assume format is a DecimalFormat
78 * System.out.print(": " + ((DecimalFormat) format).toPattern()
97 * // Assume format is a DecimalFormat
98 * System.out.print(": " + ((DecimalFormat) format).toPattern(
    [all...]
  /external/icu/icu4c/source/i18n/
decimfmt.cpp 31 using ERoundingMode = icu::DecimalFormat::ERoundingMode;
32 using EPadPosition = icu::DecimalFormat::EPadPosition;
43 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(DecimalFormat)
46 DecimalFormat::DecimalFormat(UErrorCode& status)
47 : DecimalFormat(nullptr, status) {
60 DecimalFormat::DecimalFormat(const UnicodeString& pattern, UErrorCode& status)
61 : DecimalFormat(nullptr, status) {
66 DecimalFormat::DecimalFormat(const UnicodeString& pattern, DecimalFormatSymbols* symbolsToAdopt
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
MeasureFormat.java 366 DecimalFormat.fieldPositionHelper(result, pos, appendTo.length());
596 if (!(numberFormat instanceof DecimalFormat)) {
599 numberFormatter = ((DecimalFormat) numberFormat).toNumberFormatter()
    [all...]
DecimalFormat.java 39 * <strong>[icu enhancement]</strong> ICU's replacement for {@link java.text.DecimalFormat}.&nbsp;Methods, fields, and other functionality specific to ICU are labeled '<strong>[icu]</strong>'.
41 * <code>DecimalFormat</code> is the primary
50 * DecimalFormat constructors directly unless you know what you are doing.
52 * <p>DecimalFormat aims to comply with the specification <a
54 * the specification for more information on how all the properties in DecimalFormat fit together.
57 * formatting that are designed to be an improvement over DecimalFormat. New users are discouraged
58 * from using DecimalFormat. For more information, see the package android.icu.number.
62 * <p>Customize settings on a DecimalFormat instance from the NumberFormat factory:
68 * if (f instanceof DecimalFormat) {
69 * ((DecimalFormat) f).setDecimalSeparatorAlwaysShown(true)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
MeasureFormat.java 391 DecimalFormat.fieldPositionHelper(result, pos, appendTo.length());
637 if (!(numberFormat instanceof DecimalFormat)) {
640 numberFormatter = ((DecimalFormat) numberFormat).toNumberFormatter()
    [all...]
DecimalFormat.java 38 * {@icuenhanced java.text.DecimalFormat}.{@icu _usage_}
43 * class, DecimalFormat, is only provided for java.text.DecimalFormat compatibility.
46 * <code>DecimalFormat</code> is the primary
55 * DecimalFormat constructors directly unless you know what you are doing.
57 * <p>DecimalFormat aims to comply with the specification <a
59 * the specification for more information on how all the properties in DecimalFormat fit together.
62 * formatting that are designed to be an improvement over DecimalFormat. New users are discouraged
63 * from using DecimalFormat. For more information, see the package com.ibm.icu.number.
67 * <p>Customize settings on a DecimalFormat instance from the NumberFormat factory
    [all...]
  /external/cldr/tools/java/libs/
icu4j.jar 

Completed in 611 milliseconds