Lines Matching refs:SimpleDateFormat

47  * SimpleDateFormat is a concrete class for formatting and parsing dates in a
54 * explicitly constructing an instance of SimpleDateFormat. This way, the client
57 * the default patterns in the locales, he can construct a SimpleDateFormat directly
149 * SimpleDateFormat* formatter
150 * = new SimpleDateFormat ("yyyy.MM.dd G 'at' hh:mm:ss a zzz", success );
171 * SimpleDateFormat must interpret the abbreviated year
173 * within 80 years before and 20 years after the time the SimpleDateFormat
175 * SimpleDateFormat instance created on Jan 1, 1997, the string
203 * For time zones that have no names, SimpleDateFormat uses strings GMT+hours:minutes or
215 class U_I18N_API SimpleDateFormat: public DateFormat {
218 * Construct a SimpleDateFormat using the default pattern for the default
221 * [Note:] Not all locales support SimpleDateFormat; for full generality,
226 SimpleDateFormat(UErrorCode& status);
229 * Construct a SimpleDateFormat using the given pattern and the default locale.
233 * [Note:] Not all locales support SimpleDateFormat; for full generality,
239 SimpleDateFormat(const UnicodeString& pattern,
243 * Construct a SimpleDateFormat using the given pattern, numbering system override, and the default locale.
256 * [Note:] Not all locales support SimpleDateFormat; for full generality,
263 SimpleDateFormat(const UnicodeString& pattern,
268 * Construct a SimpleDateFormat using the given pattern and locale.
272 * [Note:] Not all locales support SimpleDateFormat; for full generality,
279 SimpleDateFormat(const UnicodeString& pattern,
284 * Construct a SimpleDateFormat using the given pattern, numbering system override, and locale.
296 * [Note:] Not all locales support SimpleDateFormat; for full generality,
304 SimpleDateFormat(const UnicodeString& pattern,
310 * Construct a SimpleDateFormat using the given pattern and locale-specific
318 SimpleDateFormat(const UnicodeString& pattern,
323 * Construct a SimpleDateFormat using the given pattern and locale-specific
331 SimpleDateFormat(const UnicodeString& pattern,
339 SimpleDateFormat(const SimpleDateFormat&);
345 SimpleDateFormat& operator=(const SimpleDateFormat&);
351 virtual ~SimpleDateFormat();
588 * some other year. SimpleDateFormat chooses a year so that the resultant
593 * time at which a SimpleDateFormat object is created.
606 * some other year. SimpleDateFormat chooses a year so that the resultant
611 * time at which a SimpleDateFormat object is created.
775 SimpleDateFormat(); // default constructor not implemented
778 * Used by the DateFormat factory methods to construct a SimpleDateFormat.
785 SimpleDateFormat(EStyle timeStyle, EStyle dateStyle, const Locale& locale, UErrorCode& status);
788 * Construct a SimpleDateFormat for the given locale. If no resource data
795 SimpleDateFormat(const Locale& locale, UErrorCode& status); // Use default pattern
876 * Called by construct() and the various constructors to set up the SimpleDateFormat's
1130 // TODO: SimpleDateFormat should provide an option to invalidate
1142 SimpleDateFormat::get2DigitYearStart(UErrorCode& /*status*/) const
1148 SimpleDateFormat::format(const Formattable& obj,
1157 SimpleDateFormat::format(const Formattable& obj,
1168 SimpleDateFormat::format(const Formattable& obj,
1179 SimpleDateFormat::format(UDate date,
1188 SimpleDateFormat::format(UDate date,
1198 SimpleDateFormat::format(UDate date, UnicodeString& appendTo) const {