Home | History | Annotate | Download | only in unicode

Lines Matching defs:SimpleDateFormat

49  * SimpleDateFormat is a concrete class for formatting and parsing dates in a
56 * explicitly constructing an instance of SimpleDateFormat. This way, the client
59 * the default patterns in the locales, he can construct a SimpleDateFormat directly
67 * as pattern letters representing calendar fields. <code>SimpleDateFormat</code> supports
636 * SimpleDateFormat* formatter
637 * = new SimpleDateFormat ("yyyy.MM.dd G 'at' hh:mm:ss a zzz", success );
658 * SimpleDateFormat must interpret the abbreviated year
660 * within 80 years before and 20 years after the time the SimpleDateFormat
662 * SimpleDateFormat instance created on Jan 1, 1997, the string
691 * For time zones that have no names, SimpleDateFormat uses strings GMT+hours:minutes or
703 class U_I18N_API SimpleDateFormat: public DateFormat {
706 * Construct a SimpleDateFormat using the default pattern for the default
709 * [Note:] Not all locales support SimpleDateFormat; for full generality,
714 SimpleDateFormat(UErrorCode& status);
717 * Construct a SimpleDateFormat using the given pattern and the default locale.
721 * [Note:] Not all locales support SimpleDateFormat; for full generality,
727 SimpleDateFormat(const UnicodeString& pattern,
731 * Construct a SimpleDateFormat using the given pattern, numbering system override, and the default locale.
744 * [Note:] Not all locales support SimpleDateFormat
751 SimpleDateFormat(const UnicodeString& pattern,
756 * Construct a SimpleDateFormat using the given pattern and locale.
760 * [Note:] Not all locales support SimpleDateFormat; for full generality,
767 SimpleDateFormat(const UnicodeString& pattern,
772 * Construct a SimpleDateFormat using the given pattern, numbering system override, and locale.
784 * [Note:] Not all locales support SimpleDateFormat; for full generality,
792 SimpleDateFormat(const UnicodeString& pattern,
798 * Construct a SimpleDateFormat using the given pattern and locale-specific
806 SimpleDateFormat(const UnicodeString& pattern,
811 * Construct a SimpleDateFormat using the given pattern and locale-specific
819 SimpleDateFormat(const UnicodeString& pattern,
827 SimpleDateFormat(const SimpleDateFormat&);
833 SimpleDateFormat& operator=(const SimpleDateFormat&);
839 virtual ~SimpleDateFormat();
1022 * different from the internal calendar held by this SimpleDateFormat
1112 * some other year. SimpleDateFormat chooses a year so that the resultant
1117 * time at which a SimpleDateFormat object is created.
1130 * some other year. SimpleDateFormat chooses a year so that the resultant
1135 * time at which a SimpleDateFormat object is created.
1347 SimpleDateFormat(); // default constructor not implemented
1350 * Used by the DateFormat factory methods to construct a SimpleDateFormat.
1357 SimpleDateFormat(EStyle timeStyle, EStyle dateStyle, const Locale& locale, UErrorCode& status);
1360 * Construct a SimpleDateFormat for the given locale. If no resource data
1367 SimpleDateFormat(const Locale& locale, UErrorCode& status); // Use default pattern
1463 * Called by construct() and the various constructors to set up the SimpleDateFormat's
1712 SimpleDateFormat::get2DigitYearStart(UErrorCode& /*status*/) const
1718 SimpleDateFormat::format(const Formattable& obj,
1727 SimpleDateFormat::format(const Formattable& obj,
1738 SimpleDateFormat::format(const Formattable& obj,
1749 SimpleDateFormat::format(UDate date,
1758 SimpleDateFormat::format(UDate date,
1768 SimpleDateFormat::format(UDate date, UnicodeString& appendTo) const {