Home | History | Annotate | Download | only in unicode

Lines Matching refs:SimpleDateFormat

45  * SimpleDateFormat is a concrete class for formatting and parsing dates in a
52 * explicitly constructing an instance of SimpleDateFormat. This way, the client
55 * the default patterns in the locales, he can construct a SimpleDateFormat directly
147 * SimpleDateFormat* formatter
148 * = new SimpleDateFormat ("yyyy.MM.dd G 'at' hh:mm:ss a zzz", success );
169 * SimpleDateFormat must interpret the abbreviated year
171 * within 80 years before and 20 years after the time the SimpleDateFormat
173 * SimpleDateFormat instance created on Jan 1, 1997, the string
201 * For time zones that have no names, SimpleDateFormat uses strings GMT+hours:minutes or
213 class U_I18N_API SimpleDateFormat: public DateFormat {
216 * Construct a SimpleDateFormat using the default pattern for the default
219 * [Note:] Not all locales support SimpleDateFormat; for full generality,
224 SimpleDateFormat(UErrorCode& status);
227 * Construct a SimpleDateFormat using the given pattern and the default locale.
231 * [Note:] Not all locales support SimpleDateFormat; for full generality,
237 SimpleDateFormat(const UnicodeString& pattern,
241 * Construct a SimpleDateFormat using the given pattern, numbering system override, and the default locale.
254 * [Note:] Not all locales support SimpleDateFormat; for full generality,
261 SimpleDateFormat(const UnicodeString& pattern,
266 * Construct a SimpleDateFormat using the given pattern and locale.
270 * [Note:] Not all locales support SimpleDateFormat; for full generality,
277 SimpleDateFormat(const UnicodeString& pattern,
282 * Construct a SimpleDateFormat using the given pattern, numbering system override, and locale.
294 * [Note:] Not all locales support SimpleDateFormat; for full generality,
302 SimpleDateFormat(const UnicodeString& pattern,
308 * Construct a SimpleDateFormat using the given pattern and locale-specific
316 SimpleDateFormat(const UnicodeString& pattern,
321 * Construct a SimpleDateFormat using the given pattern and locale-specific
329 SimpleDateFormat(const UnicodeString& pattern,
337 SimpleDateFormat(const SimpleDateFormat&);
343 SimpleDateFormat& operator=(const SimpleDateFormat&);
349 virtual ~SimpleDateFormat();
518 * some other year. SimpleDateFormat chooses a year so that the resultant
523 * time at which a SimpleDateFormat object is created.
536 * some other year. SimpleDateFormat chooses a year so that the resultant
541 * time at which a SimpleDateFormat object is created.
705 SimpleDateFormat(); // default constructor not implemented
708 * Used by the DateFormat factory methods to construct a SimpleDateFormat.
715 SimpleDateFormat
718 * Construct a SimpleDateFormat for the given locale. If no resource data
725 SimpleDateFormat(const Locale& locale, UErrorCode& status); // Use default pattern
803 * Called by construct() and the various constructors to set up the SimpleDateFormat's
1057 // TODO: SimpleDateFormat should provide an option to invalidate
1069 SimpleDateFormat::get2DigitYearStart(UErrorCode& /*status*/) const
1075 SimpleDateFormat::format(const Formattable& obj,
1084 SimpleDateFormat::format(UDate date,
1093 SimpleDateFormat::format(UDate date, UnicodeString& appendTo) const {