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.
37 #include "unicode/format.h"
85 * <p><em>String</em> is the format string for this range, with special
207 * fmt.format(x, str);
234 * Format* testFormats[] =
245 * pattform.format(testArgs, 2, str, fp, status );
333 * Clone this Format object polymorphically. The caller owns the
339 virtual Format* clone(void) const;
342 * Return true if the given Format objects are semantically equal.
349 virtual UBool operator==(const Format& other) const;
389 * parsed with that format,and should be in
393 * @param formatsToCopy The format strings you want to use for each limit.
406 * @param formats Array of format string
444 * Format a double or long number using this object's choices.
454 virtual UnicodeString& format(double number,
458 * Format a int_32t number using this object's choices.
468 virtual UnicodeString& format(int32_t number,
473 * Format an int64_t number using this object's choices.
483 virtual UnicodeString& format(int64_t number,
488 * Format an array of objects using this object's choices.
501 virtual UnicodeString& format(const Formattable* objs,
507 * Format an object using this object's choices.
520 virtual UnicodeString& format(const Formattable& obj,
536 UnicodeString& format(const Formattable& obj,
542 * Format a double number. These methods call the NumberFormat
543 * pure virtual format() methods with the default FieldPosition.
551 UnicodeString& format( double number,
556 * Format a long number. These methods call the NumberFormat
557 * pure virtual format() methods with the default FieldPosition.
565 UnicodeString& format( int32_t number,
641 // static void releaseNumberFormat(NumberFormat *adopt); // call this function to 'return' the number format to the cache.
722 ChoiceFormat::format(const Formattable& obj,
725 // Don't use Format:: - use immediate base class only,
727 return NumberFormat::format(obj, appendTo, status);
731 ChoiceFormat::format(double number,
733 return NumberFormat::format(number, appendTo);
737 ChoiceFormat::format(int32_t number,
739 return NumberFormat::format(number, appendTo);