Searched refs:MakeDay (Results 1 - 4 of 4) sorted by relevance
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-date.cc | 40 double const day = MakeDay(out[DateParser::YEAR], out[DateParser::MONTH], in ParseDateTimeString() 148 double const day = MakeDay(year, month, date); in BUILTIN() 231 double const day = MakeDay(year, month, date); in BUILTIN() 252 time_val = MakeDate(MakeDay(year, month, value->Number()), time_within_day); in BUILTIN() 291 MakeDate(MakeDay(year_double, month_double, day_double), time_within_day); in BUILTIN() 416 time_val = MakeDate(MakeDay(year, m, dt), time_within_day); in BUILTIN() 474 MakeDate(MakeDay(year, month, value->Number()), time_within_day); in BUILTIN() 511 MakeDate(MakeDay(year_double, month_double, day_double), time_within_day); in BUILTIN() 632 time_val = MakeDate(MakeDay(year, m, dt), time_within_day); in BUILTIN() 839 MakeDate(MakeDay(year_doubl in BUILTIN() [all...] |
/third_party/node/deps/v8/src/date/ |
H A D | date.h | 245 // ES6 section 20.3.1.13 MakeDay (year, month, date) 246 double MakeDay(double year, double month, double date);
|
H A D | date.cc | 482 double MakeDay(double year, double month, double date) { in MakeDay() function
|
/third_party/node/deps/v8/src/objects/ |
H A D | js-temporal-objects.cc | 4331 // 4. Let date be ! MakeDay(?(year), ?(month − 1), ?(day)). in GetEpochFromISOParts() 4332 double date = MakeDay(year, month - 1, day); in GetEpochFromISOParts()
|
Completed in 18 milliseconds