Home | History | Annotate | Download | only in unicode

Lines Matching defs:SimpleDateFormat

51  * SimpleDateFormat is a concrete class for formatting and parsing dates in a
58 * explicitly constructing an instance of SimpleDateFormat. This way, the client
61 * the default patterns in the locales, he can construct a SimpleDateFormat directly
69 * as pattern letters representing calendar fields. <code>SimpleDateFormat</code> supports
640 * SimpleDateFormat* formatter
641 * = new SimpleDateFormat ("yyyy.MM.dd G 'at' hh:mm:ss a zzz", success );
662 * SimpleDateFormat must interpret the abbreviated year
664 * within 80 years before and 20 years after the time the SimpleDateFormat
666 * SimpleDateFormat instance created on Jan 1, 1997, the string
695 * For time zones that have no names, SimpleDateFormat uses strings GMT+hours:minutes or
707 class U_I18N_API SimpleDateFormat: public DateFormat {
710 * Construct a SimpleDateFormat using the default pattern for the default
713 * [Note:] Not all locales support SimpleDateFormat; for full generality,
718 SimpleDateFormat(UErrorCode& status);
721 * Construct a SimpleDateFormat using the given pattern and the default locale.
725 * [Note:] Not all locales support SimpleDateFormat; for full generality,
731 SimpleDateFormat(const UnicodeString& pattern,
735 * Construct a SimpleDateFormat using the given pattern, numbering system override, and the default locale.
748 * [Note:] Not all locales support SimpleDateFormat; for full generality,
755 SimpleDateFormat(const UnicodeString& pattern,
760 * Construct a SimpleDateFormat using the given pattern and locale.
764 * [Note:] Not all locales support SimpleDateFormat; for full generality,
771 SimpleDateFormat(const UnicodeString& pattern,
776 * Construct a SimpleDateFormat using the given pattern, numbering system override, and locale.
788 * [Note:] Not all locales support SimpleDateFormat; for full generality,
796 SimpleDateFormat(const UnicodeString& pattern,
802 * Construct a SimpleDateFormat using the given pattern and locale-specific
810 SimpleDateFormat(const UnicodeString& pattern,
815 * Construct a SimpleDateFormat using the given pattern and locale-specific
823 SimpleDateFormat(const UnicodeString& pattern,
831 SimpleDateFormat(const SimpleDateFormat&);
837 SimpleDateFormat& operator=(const SimpleDateFormat&);
843 virtual ~SimpleDateFormat();
925 * different from the internal calendar held by this SimpleDateFormat
946 * some other year. SimpleDateFormat chooses a year so that the resultant
951 * time at which a SimpleDateFormat object is created.
964 * some other year. SimpleDateFormat chooses a year so that the resultant
969 * time at which a SimpleDateFormat object is created.
1171 SimpleDateFormat(); // default constructor not implemented
1174 * Used by the DateFormat factory methods to construct a SimpleDateFormat.
1181 SimpleDateFormat(EStyle timeStyle, EStyle dateStyle, const Locale& locale, UErrorCode& status);
1184 * Construct a SimpleDateFormat for the given locale. If no resource data
1191 SimpleDateFormat(const Locale& locale, UErrorCode& status); // Use default pattern
1287 * Called by construct() and the various constructors to set up the SimpleDateFormat's
1538 SimpleDateFormat::get2DigitYearStart(UErrorCode& /*status*/) const