Searched refs:GetTime (Results 1 – 15 of 15) sorted by relevance
/ark/runtime_core/runtime/ |
D | timing.cpp | 67 uint64_t duration = it->GetTime() - begin_it->GetTime(); in Process() 85 … label.GetName() << " " << PrettyTimeNs(label.GetCPUTime()) << "/" << PrettyTimeNs(label.GetTime()) in Dump()
|
D | timing.h | 58 uint64_t GetTime() const in GetTime() function
|
/ark/js_runtime/ecmascript/builtins/ |
D | builtins_date.cpp | 120 JSTaggedValue BuiltinsDate::GetTime(EcmaRuntimeCallInfo *argv) in GetTime() function in panda::ecmascript::builtins::BuiltinsDate 123 BUILTINS_API_TRACE(argv->GetThread(), Date, GetTime); in GetTime() 130 return JSDate::Cast(msg->GetTaggedObject())->GetTime(); in GetTime() 245 JSTaggedValue value = JSDate::Cast(msg->GetTaggedObject())->GetTime(); in ToLocaleString() 308 JSTaggedValue value = JSDate::Cast(msg->GetTaggedObject())->GetTime(); in ToLocaleDateString() 371 JSTaggedValue value = JSDate::Cast(msg->GetTaggedObject())->GetTime(); in ToLocaleTimeString()
|
D | builtins_date.h | 61 static JSTaggedValue GetTime(EcmaRuntimeCallInfo *argv);
|
/ark/js_runtime/ecmascript/compiler/ |
D | circuit.cpp | 222 TimeStamp Circuit::GetTime() const in GetTime() function in panda::ecmascript::kungfu::Circuit 229 return LoadGatePtrConst(gate)->GetMark(GetTime()); in GetMark() 234 const_cast<Gate *>(LoadGatePtrConst(gate))->SetMark(mark, GetTime()); in SetMark()
|
D | circuit.h | 78 [[nodiscard]] TimeStamp GetTime() const;
|
/ark/js_runtime/ecmascript/ |
D | js_date.h | 109 JSTaggedValue GetTime() const;
|
D | runtime_call_id.h | 283 V(Date, GetTime) \
|
D | js_date.cpp | 607 JSTaggedValue JSDate::GetTime() const in GetTime() function in panda::ecmascript::JSDate
|
D | dump.cpp | 1054 os << " - time: " << GetTime().GetDouble() << "\n"; in Dump() 2908 vec.push_back(std::make_pair(CString("time"), GetTime())); in DumpForSnapshot()
|
D | builtins.cpp | 760 SetFunction(env, dateFuncPrototype, "getTime", Date::GetTime, FunctionLength::ZERO); in InitializeDate()
|
/ark/js_runtime/ecmascript/napi/include/ |
D | jsnapi.h | 697 double GetTime();
|
/ark/js_runtime/ecmascript/napi/ |
D | jsnapi.cpp | 1474 double DateRef::GetTime() in GetTime() function in panda::DateRef 1480 return date->GetTime().GetDouble(); in GetTime()
|
/ark/js_runtime/ecmascript/snapshot/mem/ |
D | snapshot_serialize.cpp | 193 reinterpret_cast<uintptr_t>(Date::GetTime),
|
/ark/js_runtime/ecmascript/builtins/tests/ |
D | builtins_date_test.cpp | 498 JSTaggedValue result2 = BuiltinsDate::GetTime(ecmaRuntimeCallInfo.get()); in HWTEST_F_L0()
|