Home
last modified time | relevance | path

Searched refs:ObjectCreate (Results 1 – 9 of 9) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/tests/
Djs_forin_iterator_test.cpp55 JSHandle<JSObject> grandfather = JSObject::ObjectCreate(thread, nullHandle); in HWTEST_F_L0()
58 JSHandle<JSObject> father = JSObject::ObjectCreate(thread, grandfather); in HWTEST_F_L0()
60 JSHandle<JSObject> son = JSObject::ObjectCreate(thread, father); in HWTEST_F_L0()
Djs_object_test.cpp164 JSHandle<JSObject> grandfather = JSObject::ObjectCreate(thread, nullHandle); in HWTEST_F_L0()
165 JSHandle<JSObject> father = JSObject::ObjectCreate(thread, grandfather); in HWTEST_F_L0()
166 JSHandle<JSObject> son = JSObject::ObjectCreate(thread, father); in HWTEST_F_L0()
356 JSHandle<JSObject> grandfather = JSObject::ObjectCreate(thread, nullHandle); in HWTEST_F_L0()
357 JSHandle<JSObject> father = JSObject::ObjectCreate(thread, grandfather); in HWTEST_F_L0()
358 JSHandle<JSObject> son = JSObject::ObjectCreate(thread, father); in HWTEST_F_L0()
388 JSHandle<JSObject> grandfather = JSObject::ObjectCreate(thread, nullHandle); in HWTEST_F_L0()
389 JSHandle<JSObject> father = JSObject::ObjectCreate(thread, grandfather); in HWTEST_F_L0()
390 JSHandle<JSObject> son = JSObject::ObjectCreate(thread, father); in HWTEST_F_L0()
445 JSHandle<JSObject> grandfather = JSObject::ObjectCreate(thread, nullHandle); in HWTEST_F_L0()
[all …]
Djs_hclass_test.cpp369 JSHandle<JSObject> Obj1 = JSObject::ObjectCreate(thread, nullHandle); in HWTEST_F_L0()
370 JSHandle<JSObject> Obj2 = JSObject::ObjectCreate(thread, Obj1); in HWTEST_F_L0()
372 JSHandle<JSObject> Obj3 = JSObject::ObjectCreate(thread, Obj2); in HWTEST_F_L0()
Djs_function_test.cpp92 JSHandle<JSObject> obj = JSObject::ObjectCreate(thread, nullHandle); in HWTEST_F_L0()
Dobject_operator_test.cpp477 JSHandle<JSObject> handleObject1 = JSObject::ObjectCreate(thread, handleObject); in HWTEST_F_L0()
496 JSHandle<JSObject> handleObject = JSObject::ObjectCreate(thread, handleGlobalObject); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/ic/tests/
Dic_handler_test.cpp218 JSHandle<JSObject> handleObj1 = JSObject::ObjectCreate(thread, nullHandle); in HWTEST_F_L0()
219 JSHandle<JSObject> handleObj2 = JSObject::ObjectCreate(thread, handleObj1); in HWTEST_F_L0()
258 JSHandle<JSObject> nullObj = JSObject::ObjectCreate(thread, nullHandle); in HWTEST_F_L0()
259 JSHandle<JSObject> handleObj = JSObject::ObjectCreate(thread, nullObj); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/
Djs_object.h511 static JSHandle<JSObject> ObjectCreate(JSThread *thread, const JSHandle<JSObject> &proto);
Djs_date_time_format.cpp532 optionsResult = JSObject::ObjectCreate(thread, optionsResult); in ToDateTimeOptions()
Djs_object.cpp1353 JSHandle<JSObject> JSObject::ObjectCreate(JSThread *thread, const JSHandle<JSObject> &proto) in ObjectCreate() function in panda::ecmascript::JSObject