• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/ICU-531.30/icuSources/i18n/unicode/

Lines Matching defs: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.)
301 * @return the month strings. (DateFormatSymbols retains ownership.)
320 * @return the weekday strings. (DateFormatSymbols retains ownership.)
338 * @return the abbreviated weekday strings. (DateFormatSymbols retains ownership.)
357 * @return the month strings. (DateFormatSymbols retains ownership.)
378 * @return the quarter strings. (DateFormatSymbols retains ownership.)
398 * @return the weekday strings. (DateFormatSymbols retains ownership.)
440 * @return The leap month patterns (DateFormatSymbols retains ownership).
450 * @return The zodiac names (DateFormatSymbols retains ownership).
463 * @return The timezone strings as a 2-d array. (DateFormatSymbols retains ownership.)
472 * a DateFormatSymbols. Therefore, the time zone strings set by this mthod
775 DateFormatSymbols(); // default constructor not implemented
831 void copyData(const DateFormatSymbols& other);