Home | History | Annotate | Download | only in unicode

Lines Matching refs:DateFormatSymbols

43  * DateFormatSymbols is a public class for encapsulating localizable date-time
44 * formatting data -- including timezone data. DateFormatSymbols is used by
47 * Rather than first creating a DateFormatSymbols to get a date-time formatter
59 * new DateFormatSymbols(aLocale)). This will load the appropriate date-time
62 * DateFormatSymbols objects are clonable. When clients obtain a
63 * DateFormatSymbols object, they can feel free to modify the date-time
69 * DateFormatSymbols are not expected to be subclassed. Data for a calendar is
79 class U_I18N_API DateFormatSymbols : public UObject {
82 * Construct a DateFormatSymbols object by loading format data from
94 DateFormatSymbols(UErrorCode& status);
97 * Construct a DateFormatSymbols object by loading format data from
106 DateFormatSymbols(const Locale& locale,
111 * Construct a DateFormatSymbols object by loading format data from
126 DateFormatSymbols(const char *type, UErrorCode& status);
129 * Construct a DateFormatSymbols object by loading format data from
141 DateFormatSymbols(const Locale& locale,
150 DateFormatSymbols(const DateFormatSymbols&);
156 DateFormatSymbols& operator=(const DateFormatSymbols&);
163 virtual ~DateFormatSymbols();
168 * @param other the DateFormatSymbols object to be compared with.
172 UBool operator==(const DateFormatSymbols& other) const;
177 * @param other the DateFormatSymbols object to be compared with.
181 UBool operator!=(const DateFormatSymbols& other) const { return !operator==(other); }
194 * @param eras Array of era strings (DateFormatSymbols retains ownership.)
211 * @param eraNames Array of era name strings (DateFormatSymbols retains ownership.)
228 * @param narrowEras Array of narrow era strings (DateFormatSymbols retains ownership.)
237 * @return the month strings. (DateFormatSymbols retains ownership.)
255 * @return the short month strings. (DateFormatSymbols retains ownership.)
294 * @return the month strings. (DateFormatSymbols retains ownership.)
313 * @return the weekday strings. (DateFormatSymbols retains ownership.)
330 * @return the short weekday strings. (DateFormatSymbols retains ownership.)
348 * @return the month strings. (DateFormatSymbols retains ownership.)
369 * @return the quarter strings. (DateFormatSymbols retains ownership.)
389 * @return the weekday strings. (DateFormatSymbols retains ownership.)
431 * @return The leap month patterns (DateFormatSymbols retains ownership).
444 * @return The timezone strings as a 2-d array. (DateFormatSymbols retains ownership.)
453 * a DateFormatSymbols. Therefore, the time zone strings set by this mthod
739 DateFormatSymbols(); // default constructor not implemented
795 void copyData(const DateFormatSymbols& other);