Searched refs:ISODaysInMonth (Results 1 - 1 of 1) sorted by relevance
/third_party/node/deps/v8/src/objects/ |
H A D | js-temporal-objects.cc | 233 int32_t ISODaysInMonth(Isolate* isolate, int32_t year, int32_t month); 3523 // d. Set day to day + ! ISODaysInMonth(year, month). in BalanceISODate() 3524 *day += ISODaysInMonth(isolate, *year, *month); in BalanceISODate() 3529 // 15. Repeat, while day > ! ISODaysInMonth(year, month), in BalanceISODate() 3531 while (*day > (iso_days_in_month = ISODaysInMonth(isolate, *year, *month))) { in BalanceISODate() 3532 // a. Set day to day − ! ISODaysInMonth(year, month). in BalanceISODate() 4427 int32_t ISODaysInMonth(Isolate* isolate, int32_t year, int32_t month) { in ISODaysInMonth() function 4490 // 3. Let daysInMonth be ! ISODaysInMonth(year, month). in IsValidISODate() 4493 if (day < 1 || day > ISODaysInMonth(isolate, year, month)) return false; in IsValidISODate() 4992 // b. Set day to ! ConstrainToRange(day, 1, ! ISODaysInMonth(yea in RegulateISODate() [all...] |
Completed in 9 milliseconds