Searched refs:CjsRequire (Results 1 – 9 of 9) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/builtins/ |
D | builtins_cjs_require.cpp | 30 BUILTINS_API_TRACE(thread, CjsRequire, CjsRequireConstructor); in CjsRequireConstructor() 54 BUILTINS_API_TRACE(thread, CjsRequire, Main); in Main() 63 BUILTINS_API_TRACE(thread, CjsRequire, Resolve); in Resolve()
|
D | builtins.cpp | 3876 factory_->NewEcmaHClass(CjsRequire::SIZE, JSType::JS_CJS_REQUIRE, cjsRequirePrototypeValue); in InitializeCjsRequire()
|
/arkcompiler/ets_runtime/ecmascript/require/ |
D | js_cjs_require.h | 24 class CjsRequire final : public JSObject { 26 CAST_CHECK(CjsRequire, IsCjsRequire);
|
/arkcompiler/ets_runtime/ecmascript/ |
D | runtime_call_id.h | 311 V(CjsRequire, CjsRequireConstructor) \ 312 V(CjsRequire, Main) \ 313 V(CjsRequire, Resolve) \
|
D | object_factory.h | 146 class CjsRequire; variable 613 JSHandle<CjsRequire> NewCjsRequire();
|
D | object_factory.cpp | 1322 CjsRequire::Cast(*obj)->SetCache(thread_, JSTaggedValue::Undefined()); in InitializeJSObject() 1323 CjsRequire::Cast(*obj)->SetParent(thread_, JSTaggedValue::Undefined()); in InitializeJSObject() 2525 JSHandle<CjsRequire> ObjectFactory::NewCjsRequire() in NewCjsRequire() 2530 JSHandle<CjsRequire> cjsRequire = JSHandle<CjsRequire>(NewJSObjectByConstructor(requireObj)); in NewCjsRequire()
|
D | dump.cpp | 1115 CjsRequire::Cast(obj)->Dump(os); in DumpObject() 3577 void CjsRequire::Dump(std::ostream &os) const in Dump() 3963 CjsRequire::Cast(obj)->DumpForSnapshot(vec); in DumpObject() 5435 void CjsRequire::DumpForSnapshot(std::vector<std::pair<CString, JSTaggedValue>> &vec) const in DumpForSnapshot()
|
/arkcompiler/ets_runtime/ecmascript/mem/ |
D | object_xray.h | 614 CjsRequire::Cast(object)->VisitRangeSlot(visitor); in VisitObjectBody()
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
D | dump_test.cpp | 1321 CHECK_DUMP_FIELDS(JSObject::SIZE, CjsRequire::SIZE, 2U); in HWTEST_F_L0() 1322 JSHandle<CjsRequire> cjsRequire = factory->NewCjsRequire(); in HWTEST_F_L0()
|