Lines Matching refs:date
10 #include "src/date/date.h"
16 #include "src/objects/js-date-time-format.h"
283 Isolate* isolate, Handle<JSReceiver> calendar, Handle<Object> date,
451 // 1. Let ns be the approximate current UTC date and time, in nanoseconds
2829 Handle<Object> date,
2832 return CalendarDateAdd(isolate, calendar, date, duration, options,
2837 Isolate* isolate, Handle<JSReceiver> calendar, Handle<Object> date,
2848 // 3. Let addedDate be ? Call(dateAdd, calendar, « date, duration, options »).
2849 Handle<Object> argv[] = {date, duration, options};
4331 // 4. Let date be ! MakeDay(?(year), ?(month − 1), ?(day)).
4332 double date = MakeDay(year, month - 1, day);
4335 // 6. Let ms be ! MakeDate(date, time).
4336 double ms = MakeDate(date, time);
4931 // 4. Let date be the date given by year, month, and day.
4932 // 5. Return date's ordinal date in the year according to ISO-8601.
4954 // 4. Let date be the date given by year, month, and day.
4955 // 5. Return date's day of the week according to ISO-8601.
5391 Handle<JSTemporalPlainDate> date;
5393 isolate, date,
5695 Handle<JSTemporalPlainDate> date = Handle<JSTemporalPlainDate>::cast(item);
5696 return CreateTemporalDate(isolate, date->iso_year(), date->iso_month(),
5697 date->iso_day(),
5698 Handle<JSReceiver>(date->calendar(), isolate));