Searched refs:MS (Results 1 - 5 of 5) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_date.h | 154 GET_DATE_VALUE(GetMilliseconds, MS, true); 184 GET_DATE_VALUE(GetUTCMilliseconds, MS, false);
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | js_date.cpp | 42 (*date)[MS] = (*date)[HOUR] % MS_PER_SECOND; // ms in TransferTimeToDate() 43 (*date)[HOUR] = ((*date)[HOUR] - (*date)[MS]) / MS_PER_SECOND; // s from hour, minutes, second in TransferTimeToDate() 481 double dateTime = MakeTime(time[HOUR], time[MIN], time[SEC], time[MS]); 753 ConvertAndAppend(fields[MS], STR_LENGTH_OTHERS + 1, str); in ToISOString() 938 (((*date)[HOUR] * MIN_PER_HOUR + (*date)[MIN]) * SEC_PER_MINUTE + (*date)[SEC]) * MS_PER_SECOND + (*date)[MS]; in SetDateValues()
|
H A D | date_parse.cpp | 367 if (time[MIN] == 0 && time[SEC] == 0 && time[MS] == 0) { in SetTimeValue() 373 !MilliSecondIsValid(time[MS])) { in SetTimeValue()
|
H A D | js_date.h | 51 static constexpr uint8_t MS = 6; member
|
/arkcompiler/ets_frontend/es2panda/test/compiler/js/ |
H A D | cocos_worker_test.js | [all...] |
Completed in 33 milliseconds