Home | History | Annotate | Download | only in unicode

Lines Matching full:numberformat

68  * DecimalFormat is a concrete subclass of NumberFormat that formats decimal
76 * <p>To obtain a NumberFormat for a specific locale (including the default
77 * locale) call one of NumberFormat's factory methods such as
79 * you know what you are doing, since the NumberFormat factory methods may
87 * const Locale* locales = NumberFormat::getAvailableLocales(locCount);
91 * NumberFormat* form;
109 * form = NumberFormat::createInstance(locales[i], success ); break;
111 * form = NumberFormat::createCurrencyInstance(locales[i], success ); break;
113 * form = NumberFormat::createPercentInstance(locales[i], success ); break;
138 * for (int j=NumberFormat::kNumberStyle;
139 * j<=NumberFormat::kPluralCurrencyStyle;
141 * NumberFormat* format = NumberFormat::createInstance(locale, j, success);
155 * object. When using the NumberFormat factory methods, the
375 * NumberFormat.getInstance(ULocale, NumberFormat.CURRENCYSTYLE) can parse
660 class U_I18N_API DecimalFormat: public NumberFormat {
701 * on NumberFormat such as createInstance. These factories will
702 * return the most appropriate sub-class of NumberFormat for a given
716 * on NumberFormat such as createInstance. These factories will
717 * return the most appropriate sub-class of NumberFormat for a given
733 * locale, use the factory methods on NumberFormat such as
736 * a NumberFormat factory method.
809 * locale, use the factory methods on NumberFormat such as
812 * a NumberFormat factory method.
832 * locale, use the factory methods on NumberFormat such as
835 * a NumberFormat factory method.
889 using NumberFormat::format;
1065 * The default implementation in NumberFormat converts the decimal number
1085 * The default implementation in NumberFormat converts the decimal number
1121 * Redeclared NumberFormat method.
1136 * Redeclared NumberFormat method.
1149 * Redeclared NumberFormat method.
1150 * Format a long number. These methods call the NumberFormat
1163 * Redeclared NumberFormat method.
1164 * Format an int64 number. These methods call the NumberFormat
1613 * @see NumberFormat::isGroupingUsed
1626 * @see NumberFormat::setGroupingUsed
1646 * @see NumberFormat::isGroupingUsed
1659 * @see NumberFormat#setGroupingUsed
1805 * @see NumberFormat#setMaximumIntegerDigits
1816 * @see NumberFormat#setMinimumIntegerDigits
1827 * @see NumberFormat#setMaximumFractionDigits
1838 * @see NumberFormat#setMinimumFractionDigits
2433 return NumberFormat::format(obj, appendTo, status);