Searched refs:SetDateValues (Results 1 - 9 of 9) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/ |
H A D | js_date.h | 166 static double SetDateValues(const std::array<int64_t, DATE_LENGTH> *date, bool isLocal); 167 static double SetDateValues(int64_t year, int64_t month, int64_t day);
|
H A D | js_date.cpp | 924 return JSTaggedValue(SetDateValues(&date, isLocal)); in SetDateValue() 928 double JSDate::SetDateValues(const std::array<int64_t, DATE_LENGTH> *date, bool isLocal) in SetDateValues() function in panda::ecmascript::JSDate 947 double JSDate::SetDateValues(int64_t year, int64_t month, int64_t day) in SetDateValues() function in panda::ecmascript::JSDate
|
/arkcompiler/ets_runtime/ecmascript/stubs/ |
H A D | runtime_stub_list.h | 180 V(SetDateValues) \
|
H A D | runtime_stubs.h | 150 static double SetDateValues(double year, double month, double day);
|
H A D | runtime_stubs.cpp | 3479 double RuntimeStubs::SetDateValues(double year, double month, double day) in SetDateValues() function in panda::ecmascript::RuntimeStubs 3486 return JSDate::SetDateValues(static_cast<int64_t>(year), static_cast<int64_t>(month), static_cast<int64_t>(day)); in SetDateValues()
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_date.cpp | 486 timeValue = JSTaggedValue((i == length) ? JSDate::SetDateValues(&fields, true) : base::NAN_VALUE); in ExtractDateFields()
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | call_signature.h | 565 V(SetDateValues) \
|
H A D | call_signature.cpp | 2751 DEF_CALL_SIGNATURE(SetDateValues) in DEF_CALL_SIGNATURE() 2754 CallSignature index("SetDateValues", 0, 3, ArgumentsOrder::DEFAULT_ORDER, VariableType::FLOAT64()); in DEF_CALL_SIGNATURE()
|
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/ |
H A D | builtins_stubs.cpp | 506 timeValue = CallNGCRuntime(glue, RTSTUB_ID(SetDateValues), {y, m, d});
in DECLARE_BUILTINS()
|
Completed in 20 milliseconds