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 using NumberFormat::format;
447 * Format a double or long number using this object's choices.
457 virtual UnicodeString& format(double number,
461 * Format a int_32t number using this object's choices.
471 virtual UnicodeString& format(int32_t number,
476 * Format an int64_t number using this object's choices.
486 virtual UnicodeString& format(int64_t number,
491 * Format an array of objects using this object's choices.
504 virtual UnicodeString& format(const Formattable* objs,
510 * Format an object using this object's choices.
523 virtual UnicodeString& format(const Formattable& obj,
539 UnicodeString& format(const Formattable& obj,
545 * Format a double number. These methods call the NumberFormat
546 * pure virtual format() methods with the default FieldPosition.
554 UnicodeString& format( double number,
559 * Format a long number. These methods call the NumberFormat
560 * pure virtual format() methods with the default FieldPosition.
568 UnicodeString& format( int32_t number,
644 // static void releaseNumberFormat(NumberFormat *adopt); // call this function to 'return' the number format to the cache.
725 ChoiceFormat::format(const Formattable& obj,
728 // Don't use Format:: - use immediate base class only,
730 return NumberFormat::format(obj, appendTo, status);
734 ChoiceFormat::format(double number,
736 return NumberFormat::format(number, appendTo);
740 ChoiceFormat::format(int32_t number,
742 return NumberFormat::format(number, appendTo);