Lines Matching full:date
11 * Date Name Description
49 * date formatting and parsing actions.
55 * To format a date for the current Locale, use one of the static factory
79 * To get specific fields of a date, you can use UFieldPosition to
91 * To format a date for a different Locale, specify it in the call to
106 * Use createDateInstance() to produce the normal date format for that country.
109 * to produce a DateFormat that formats both date and time. You can pass in
143 * the DateTimePatterns resource. There are 4 time patterns, 4 date patterns,
144 * the default date-time pattern, and 4 date-time patterns. Each block of 4 values
216 * objects with a UDate type. If a the Formattable object type is not a Date,
219 * @param obj The object to format. Must be a Date.
234 * Formats a date into a date/time string. This is an abstract method which
253 * @param cal Calendar set to the date and time to be formatted
254 * into a date/time string. When the calendar type is
256 * DateFormat instance, the date and the time zone will
271 * Formats a UDate into a date/time string.
289 * @param date UDate to be formatted into a date/time string.
297 UnicodeString& format( UDate date,
302 * Formats a UDate into a date/time string. If there is a problem, you won't
306 * @param date The UDate value to be formatted into a string.
312 UnicodeString& format(UDate date, UnicodeString& appendTo) const;
329 * Parse a date/time string.
342 * Parse a date/time string beginning at the given parse position. For
343 * example, a time text "07/10/96 4:5 PM, PDT" will be parsed into a Date
344 * that is equivalent to Date(837039928046).
347 * this object's format method but can still be parsed as a date, then the
353 * @param text The date/time string to be parsed
354 * @param cal a Calendar set to the date and time to be formatted
355 * into a date/time string. When the calendar type
372 * Parse a date/time string beginning at the given parse position. For
373 * example, a time text "07/10/96 4:5 PM, PDT" will be parsed into a Date
374 * that is equivalent to Date(837039928046).
377 * this object's format method but can still be parsed as a date, then the
383 * @param text The date/time string to be parsed
395 * date/time strings into Formattable objects with UDate types.
424 * Create a default date/time formatter that uses the SHORT style for both
425 * the date and the time.
427 * @return A date/time formatter which the caller owns.
447 * Creates a date formatter with the given formatting style for the given
453 * @return A date formatter which the caller owns.
460 * Creates a date/time formatter with the given formatting styles for the
463 * @param dateStyle The given formatting style for the date portion of the result.
469 * @return A date/time formatter which the caller owns.
492 * Specify whether or not date/time parsing is to be lenient. With lenient
497 * @param lenient True specifies date/time interpretation to be lenient.
504 * Gets the calendar associated with this date/time formatter.
505 * @return the calendar associated with this date/time formatter.
511 * Set the calendar to be used by this date format. Initially, the default
522 * Set the calendar to be used by this date format. Initially, the default
532 * Gets the number formatter which this date/time formatter uses to format
534 * @return the number formatter which this date/time formatter uses.
599 * to implement date/time formatting. Subclasses should generally initialize
615 * Gets the date/time formatter with the given formatting styles for the
617 * @param dateStyle the given date formatting style.
620 * @return a date/time formatter, or 0 on failure.