Lines Matching refs:date
24 var GlobalDate = global.Date;
512 * Returns filtered extension (number and date format constructors use
1417 * Returns object that matches LDML representation of the date.
1505 if ((required === 'date' || required === 'any') &&
1517 if (needsDefault && (defaults === 'date' || defaults === 'all')) {
1567 options = toDateTimeOptions(options, 'any', 'date');
1591 * for a date/time format.
1743 * Returns a String value representing the result of calling ToNumber(date)
1763 * Returns a Date object representing the result of calling ToString(value)
1766 * Returns undefined if date string cannot be parsed.
1774 // 0 because date is optional argument.
1982 // number and date format instances. They'll be created as needed.
2181 * Returns actual formatted date or fails if date parameter is invalid.
2183 function toLocaleDateTime(date, locales, options, required, defaults, service) {
2184 if (!(date instanceof GlobalDate)) {
2185 throw MakeTypeError(kMethodInvokedOnWrongType, "Date");
2188 if (IsNaN(date)) return 'Invalid Date';
2195 return formatDate(dateFormat, date);
2200 * Formats a Date object (this) using locale and options values.
2201 * If locale or options are omitted, defaults are used - both date and time are
2218 * Formats a Date object (this) using locale and options values.
2219 * If locale or options are omitted, defaults are used - only date is present
2230 this, locales, options, 'date', 'date', 'dateformatdate');
2236 * Formats a Date object (this) using locale and options values.