Lines Matching refs:date
9 * Date Name Description
47 * parsing (text -> millis), and normalization. Formats/Parses a date or time,
50 * Clients are encouraged to create a date-time formatter using DateFormat::getInstance(),
59 * Date/Time format syntax:
61 * The date/time format is specified by means of a string time pattern. In this
99 * ' escape for text (Delimiter) 'Date='
156 * // Parse the previous string back into a Date.
168 * When parsing a date string using the abbreviated year pattern ("y" or "yy"),
248 * date or time pattern are to be rendered using Thai digits, simply specify the numbering system override
249 * as "thai". To specify that just the year portion of the date be formatted using Hebrew numbering,
289 * date or time pattern are to be rendered using Thai digits, simply specify the numbering system override
290 * as "thai". To specify that just the year portion of the date be formatted using Hebrew numbering,
369 * Format a date or time, which is the standard millis since 24:00 GMT, Jan
375 * @param cal Calendar set to the date and time to be formatted
376 * into a date/time string.
389 * Format a date or time, which is the standard millis since 24:00 GMT, Jan
395 * @param obj A Formattable containing the date-time value to be formatted
396 * into a date-time string. If the type of the Formattable
398 * instance of Date.
414 * @param date the Date value to be formatted.
422 UnicodeString& format(UDate date,
441 * @param date Date value to be formatted.
447 UnicodeString& format(UDate date, UnicodeString& appendTo) const;
450 * Parse a date/time string beginning at the given parse position. For
451 * example, a time text "07/10/96 4:5 PM, PDT" will be parsed into a Date
452 * that is equivalent to Date(837039928046).
455 * this object's format method but can still be parsed as a date, then the
459 * @param text The date/time string to be parsed
460 * @param cal a Calendar set to the date and time to be formatted
461 * into a date/time string.
473 * Parse a date/time string starting at the given parse position. For
474 * example, a time text "07/10/96 4:5 PM, PDT" will be parsed into a Date
475 * that is equivalent to Date(837039928046).
478 * this object's format method but can still be parsed as a date, then the
484 * @param text The date/time string to be parsed
496 * Parse a date/time string. For example, a time text "07/10/96 4:5 PM, PDT"
497 * will be parsed into a UDate that is equivalent to Date(837039928046).
504 * @param text The date/time string to be parsed
516 * a assumed range of 100 years starting on the two digit start date. For
519 * date is on or after the two digit start date and within 100 years of the
520 * two digit start date.
522 * By default, the two digit start date is set to 80 years before the current
534 * a assumed range of 100 years starting on the two digit start date. For
537 * date is on or after the two digit start date and within 100 years of the
538 * two digit start date.
540 * By default, the two digit start date is set to 80 years before the current
549 * Return a pattern string describing this date format.
557 * Return a localized pattern string describing this date format.
576 * Apply the given unlocalized pattern string to this date format.
586 * Apply the given localized pattern string to this date format.
599 * Gets the date/time formatting symbols (this is an object carrying
602 * @return a copy of the date-time formatting data associated
603 * with this date-time formatter.
609 * Set the date/time formatting symbols. The caller no longer owns the
611 * @param newFormatSymbols the given date-time formatting symbols to copy.
617 * Set the date/time formatting data.
618 * @param newFormatSymbols the given date-time formatting symbols to copy.
650 * Set the calendar to be used by this date format. Initially, the default
664 * from large to small is: ERA, YEAR, MONTH, DATE, AM_PM, HOUR, MINUTE,...
677 * from large to small is: ERA, YEAR, MONTH, DATE, AM_PM, HOUR, MINUTE,...
691 * Get the locale of this simple date formatter.
694 * @return locale in this simple date formatter
710 * @param dateStyle the date style.
795 * @param dateStyle The date style, as passed to DateFormat::createTimeInstance().
814 * @param field the date field being parsed.
817 * @param cal a Calendar set to the date and time to be formatted
818 * into a date/time string.
829 * @param field the date field being parsed.
832 * @param cal a Calendar set to the date and time to be formatted
833 * into a date/time string.
841 * Private member function that converts the parsed date strings into
845 * @param ch the pattern character for the date field text to be parsed.
849 * @param cal a Calendar set to the date and time to be formatted
850 * into a date/time string.
893 * Sets the starting date of the 100-year window that dates with 2-digit years
895 * @param startDate the start date
1006 * at defaultCenturyStart, which may be any date. If defaultCenturyStart is
1084 SimpleDateFormat::format(UDate date,
1089 return DateFormat::format(date, appendTo, fieldPosition);
1093 SimpleDateFormat::format(UDate date, UnicodeString& appendTo) const {
1094 return DateFormat::format(date, appendTo);