Lines Matching refs:date
10 * Date Name Description
51 * parsing (text -> millis), and normalization. Formats/Parses a date or time,
54 * Clients are encouraged to create a date-time formatter using DateFormat::getInstance(),
63 * Date/Time format syntax:
65 * The date/time format is specified by means of a string time pattern. In this
109 * ' escape for text (Delimiter) 'Date='
169 * // Parse the previous string back into a Date.
181 * When parsing a date string using the abbreviated year pattern ("y" or "yy"),
262 * date or time pattern are to be rendered using Thai digits, simply specify the numbering system override
263 * as "thai". To specify that just the year portion of the date be formatted using Hebrew numbering,
303 * date or time pattern are to be rendered using Thai digits, simply specify the numbering system override
304 * as "thai". To specify that just the year portion of the date be formatted using Hebrew numbering,
386 * Format a date or time, which is the standard millis since 24:00 GMT, Jan
392 * @param cal Calendar set to the date and time to be formatted
393 * into a date/time string.
406 * Format a date or time, which is the standard millis since 24:00 GMT, Jan
412 * @param cal Calendar set to the date and time to be formatted
413 * into a date/time string.
429 * Format a date or time, which is the standard millis since 24:00 GMT, Jan
435 * @param obj A Formattable containing the date-time value to be formatted
436 * into a date-time string. If the type of the Formattable
438 * instance of Date.
453 * Format a date or time, which is the standard millis since 24:00 GMT, Jan
459 * @param obj A Formattable containing the date-time value to be formatted
460 * into a date-time string. If the type of the Formattable
462 * instance of Date.
479 * @param date the Date value to be formatted.
487 UnicodeString& format(UDate date,
493 * @param date the Date value to be formatted.
503 UnicodeString& format(UDate date,
523 * @param date Date value to be formatted.
529 UnicodeString& format(UDate date, UnicodeString& appendTo) const;
532 * Parse a date/time string beginning at the given parse position. For
533 * example, a time text "07/10/96 4:5 PM, PDT" will be parsed into a Date
534 * that is equivalent to Date(837039928046).
537 * this object's format method but can still be parsed as a date, then the
542 * @param text The date/time string to be parsed
543 * @param cal A Calendar set on input to the date and time to be used for
544 * missing values in the date/time string being parsed, and set
545 * on output to the parsed date/time. When the calendar type is
562 * Parse a date/time string starting at the given parse position. For
563 * example, a time text "07/10/96 4:5 PM, PDT" will be parsed into a Date
564 * that is equivalent to Date(837039928046).
567 * this object's format method but can still be parsed as a date, then the
572 * Note that the normal date formats associated with some calendars - such
576 * the number of such cycles since the start date of the calendar (in the
581 * with the Calendar passed in set to the current date, or to a date
584 * @param text The date/time string to be parsed
596 * Parse a date/time string. For example, a time text "07/10/96 4:5 PM, PDT"
597 * will be parsed into a UDate that is equivalent to Date(837039928046).
605 * this object's format method but can still be parsed as a date, then the
610 * Note that the normal date formats associated with some calendars - such
614 * the number of such cycles since the start date of the calendar (in the
619 * with the Calendar passed in set to the current date, or to a date
622 * @param text The date/time string to be parsed into a UDate value.
634 * a assumed range of 100 years starting on the two digit start date. For
637 * date is on or after the two digit start date and within 100 years of the
638 * two digit start date.
640 * By default, the two digit start date is set to 80 years before the current
652 * a assumed range of 100 years starting on the two digit start date. For
655 * date is on or after the two digit start date and within 100 years of the
656 * two digit start date.
658 * By default, the two digit start date is set to 80 years before the current
667 * Return a pattern string describing this date format.
675 * Return a localized pattern string describing this date format.
694 * Apply the given unlocalized pattern string to this date format.
704 * Apply the given localized pattern string to this date format.
717 * Gets the date/time formatting symbols (this is an object carrying
720 * @return a copy of the date-time formatting data associated
721 * with this date-time formatter.
727 * Set the date/time formatting symbols. The caller no longer owns the
729 * @param newFormatSymbols the given date-time formatting symbols to copy.
735 * Set the date/time formatting data.
736 * @param newFormatSymbols the given date-time formatting symbols to copy.
768 * Set the calendar to be used by this date format. Initially, the default
805 * Sets the TimeZoneFormat to be used by this date/time formatter.
814 * Sets the TimeZoneFormat to be used by this date/time formatter.
821 * Gets the time zone format object associated with this date/time formatter.
822 * @return the time zone format associated with this date/time formatter.
832 * from large to small is: ERA, YEAR, MONTH, DATE, AM_PM, HOUR, MINUTE,...
845 * from large to small is: ERA, YEAR, MONTH, DATE, AM_PM, HOUR, MINUTE,...
857 * Get the locale of this simple date formatter.
860 * @return locale in this simple date formatter
876 * @param dateStyle the date style.
907 * @param capitalizationContext Capitalization context for this date format.
979 * @param dateStyle The date style, as passed to DateFormat::createTimeInstance().
998 * @param field the date field being parsed.
1002 * @param cal a Calendar set to the date and time to be formatted
1003 * into a date/time string.
1015 * @param field the date field being parsed.
1018 * @param cal a Calendar set to the date and time to be formatted
1019 * into a date/time string.
1043 * Private member function that converts the parsed date strings into
1047 * @param ch the pattern character for the date field text to be parsed.
1053 * @param cal a Calendar set to the date and time to be formatted
1054 * into a date/time string.
1099 * Sets the starting date of the 100-year window that dates with 2-digit years
1101 * @param startDate the start date
1205 * at defaultCenturyStart, which may be any date. If defaultCenturyStart is
1273 SimpleDateFormat::format(UDate date,
1278 return DateFormat::format(date, appendTo, fieldPosition);
1282 SimpleDateFormat::format(UDate date,
1288 return DateFormat::format(date, appendTo, posIter, status);
1292 SimpleDateFormat::format(UDate date, UnicodeString& appendTo) const {
1293 return DateFormat::format(date, appendTo);