Home | History | Annotate | Download | only in unicode

Lines Matching refs:format

18 *   07/22/98    stephen     Removed operator!= (implemented in Format)
29 * \brief C++ API: Choice Format.
36 #include "unicode/format.h"
154 * fmt.format(x, str);
243 * Clones this Format object. The caller owns the
249 virtual Format* clone(void) const;
252 * Returns true if the given Format objects are semantically equal.
259 virtual UBool operator==(const Format& other) const;
300 * parsed with that format,and should be in
304 * @param formatsToCopy The format strings you want to use for each limit.
318 * @param formats Array of format string
358 using NumberFormat::format;
371 virtual UnicodeString& format(double number,
385 virtual UnicodeString& format(int32_t number,
400 virtual UnicodeString& format(int64_t number,
418 virtual UnicodeString& format(const Formattable* objs,
437 virtual UnicodeString& format(const Formattable& obj,
453 UnicodeString& format(const Formattable& obj,
460 * pure virtual format() methods with the default FieldPosition.
468 UnicodeString& format( double number,
474 * pure virtual format() methods with the default FieldPosition.
482 UnicodeString& format( int32_t number,
663 ChoiceFormat::format(const Formattable& obj,
666 // Don't use Format:: - use immediate base class only,
668 return NumberFormat::format(obj, appendTo, status);
672 ChoiceFormat::format(double number,
674 return NumberFormat::format(number, appendTo);
678 ChoiceFormat::format(int32_t number,
680 return NumberFormat::format(number, appendTo);