Home | History | Annotate | Download | only in unicode

Lines Matching refs:Format

17  * \brief C++ API: Format and parse duration in single time unit
58 * Format or parse a TimeUnitAmount, using plural rules for the units where available.
66 * // create time unit format instance
67 * TimeUnitFormat* format = new TimeUnitFormat(Locale("en"), status);
68 * // format a time unit amount
73 * formatted = ((Format*)format)->format(formattable, formatted, status);
75 * ((Format*)format)->parseObject(formatted, result, status);
122 * Clone this Format object polymorphically. The caller owns the result and
127 virtual Format* clone(void) const;
136 * Return true if the given Format objects are not semantically equal.
139 * @return true if the given Format objects are not semantically equal.
142 UBool operator!=(const Format& other) const;
154 * Set the number format used for formatting or parsing.
155 * @param format the number formatter to be set
159 void setNumberFormat(const NumberFormat& format, UErrorCode& status);
163 * @see Format#parseObject(const UnicodeString&, Formattable&, ParsePosition&) const;
238 TimeUnitFormat::operator!=(const Format& other) const {