Home | History | Annotate | Download | only in unicode

Lines Matching defs:DecimalFormat

77  * DecimalFormat is a concrete subclass of NumberFormat that formats decimal
87 * createInstance(). Do not call the DecimalFormat constructors directly, unless
89 * return subclasses other than DecimalFormat.
126 * pattern = ((DecimalFormat*)form)->toPattern(pattern);
159 * <p>A DecimalFormat consists of a <em>pattern</em> and a set of
283 * <p>A DecimalFormat pattern contains a postive and negative
320 * DecimalFormat to set a failing UErrorCode.
371 * <p>DecimalFormat parses all Unicode characters that represent
373 * DecimalFormat also recognizes as digits the ten consecutive
444 * but it need not be. DecimalFormat supports arbitrary mantissas.
445 * DecimalFormat can be instructed to use scientific
495 * <code>DecimalFormat</code> has two ways of controlling how many
592 * <p>DecimalFormat supports padding the result of
632 * <p>DecimalFormat supports rounding to a specific increment. For
647 * DecimalFormat::ERoundingMode. The default rounding mode is
648 * DecimalFormat::kRoundHalfEven. The rounding mode can only be set
660 * <p>DecimalFormat objects are not synchronized. Multiple
669 class U_I18N_API DecimalFormat: public NumberFormat {
705 * Create a DecimalFormat using the default pattern and symbols
707 * DecimalFormat when internationalization is not the main concern.
717 DecimalFormat(UErrorCode& status);
720 * Create a DecimalFormat from the given pattern and the symbols
722 * DecimalFormat when internationalization is not the main concern.
733 DecimalFormat(const UnicodeString& pattern,
737 * Create a DecimalFormat from the given pattern and symbols.
754 DecimalFormat( const UnicodeString& pattern,
761 * Create a DecimalFormat from the given pattern, symbols, and style.
771 DecimalFormat( const UnicodeString& pattern,
787 * Set an integer attribute on this DecimalFormat.
796 virtual DecimalFormat& setAttribute( UNumberFormatAttribute attr,
842 * Create a DecimalFormat from the given pattern and symbols.
860 DecimalFormat( const UnicodeString& pattern,
865 * Create a DecimalFormat from the given pattern and symbols.
881 DecimalFormat( const UnicodeString& pattern,
888 * @param source the DecimalFormat object to be copied from.
891 DecimalFormat(const DecimalFormat& source);
896 * @param rhs the DecimalFormat object to be copied.
899 DecimalFormat& operator=(const DecimalFormat& rhs);
905 virtual ~DecimalFormat();
911 * @return a polymorphic copy of this DecimalFormat.
2001 * formatted by this DecimalFormat.
2009 * formatted by this DecimalFormat.
2017 * formatted by this DecimalFormat. Note: the DigitList may be modified.
2025 * as it would be formatted by this DecimalFormat.
2036 * as it would be formatted by this DecimalFormat.
2047 * as it would be formatted by this DecimalFormat.
2089 DecimalFormat(); // default constructor not implemented
2098 * Do real work of constructing a new DecimalFormat.
2227 // DecimalFormat(pattern, decimalFormatSymbol, style)
2246 // Information needed for DecimalFormat to format/parse currency plural.