Searched refs:WEEKDAY (Results 1 - 3 of 3) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_date.h | 145 GET_DATE_VALUE(GetDay, WEEKDAY, true); 175 GET_DATE_VALUE(GetUTCDay, WEEKDAY, false);
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | js_date.cpp | 33 static const std::array<CString, WEEKDAY> WEEK_DAY_NAME = {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"}; 48 (*date)[WEEKDAY] = Mod(((*date)[DAYS] + LEAP_NUMBER[0]), DAY_PER_WEEK); // weekday in TransferTimeToDate() 674 str.append(WEEK_DAY_NAME[fields[WEEKDAY]]) // Append weekdy name in ToDateString() 706 str.append(WEEK_DAY_NAME[fields[WEEKDAY]]) // Append weekday name in ToDateString() 778 str.append(WEEK_DAY_NAME[fields[WEEKDAY]]) // Append weekday name in ToString() 837 str.append(WEEK_DAY_NAME[fields[WEEKDAY]]) // Append weekday name in ToUTCString()
|
H A D | js_date.h | 52 static constexpr uint8_t WEEKDAY = 7; member
|
Completed in 4 milliseconds