Searched refs:JSAPIArrayListIterator (Results 1 – 12 of 12) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/js_api/ |
D | js_api_arraylist_iterator.h | 27 class JSAPIArrayListIterator : public JSObject { 29 static JSAPIArrayListIterator *Cast(TaggedObject *obj) in Cast() 32 return static_cast<JSAPIArrayListIterator *>(obj); in Cast()
|
D | js_api_arraylist_iterator.cpp | 31 JSTaggedValue JSAPIArrayListIterator::Next(EcmaRuntimeCallInfo *argv) in Next() 43 JSHandle<JSAPIArrayListIterator> iter(input); in Next()
|
D | js_api_arraylist.cpp | 433 JSHandle<JSAPIArrayListIterator> iter(factory->NewJSAPIArrayListIterator(obj)); in GetIteratorObj()
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
D | js_api_arraylist_iterator_test.cpp | 99 …JSHandle<JSAPIArrayListIterator> arrayListIterator(thread, JSAPIArrayList::GetIteratorObj(thread, … in HWTEST_F_L0() 108 JSTaggedValue result = JSAPIArrayListIterator::Next(ecmaRuntimeCallInfo); in HWTEST_F_L0() 130 JSTaggedValue result = JSAPIArrayListIterator::Next(ecmaRuntimeCallInfo); in HWTEST_F_L0()
|
D | dump_test.cpp | 1054 CHECK_DUMP_FIELDS(JSObject::SIZE, JSAPIArrayListIterator::SIZE, 2U); in HWTEST_F_L0() 1056 …JSHandle<JSAPIArrayListIterator> jsArrayListIter = factory->NewJSAPIArrayListIterator(jsArrayList); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/ |
D | object_factory.h | 111 class JSAPIArrayListIterator; variable 566 …JSHandle<JSAPIArrayListIterator> NewJSAPIArrayListIterator(const JSHandle<JSAPIArrayList> &arrayLi…
|
D | global_env_constants.cpp | 242 … factory->NewEcmaHClass(hClass, JSAPIArrayListIterator::SIZE, JSType::JS_API_ARRAYLIST_ITERATOR)); in InitRootsClass()
|
D | dump.cpp | 977 JSAPIArrayListIterator::Cast(obj)->Dump(os); in DumpObject() 1991 void JSAPIArrayListIterator::Dump(std::ostream &os) const in Dump() 3981 JSAPIArrayListIterator::Cast(obj)->DumpForSnapshot(vec); in DumpObject() 4560 void JSAPIArrayListIterator::DumpForSnapshot(std::vector<std::pair<CString, JSTaggedValue>> &vec) c… in DumpForSnapshot()
|
D | object_factory.cpp | 3554 JSHandle<JSAPIArrayListIterator> ObjectFactory::NewJSAPIArrayListIterator(const JSHandle<JSAPIArray… in NewJSAPIArrayListIterator() 3561 JSHandle<JSAPIArrayListIterator> iter(NewJSObject(hclassHandle)); in NewJSAPIArrayListIterator()
|
/arkcompiler/ets_runtime/ecmascript/mem/ |
D | object_xray.h | 477 JSAPIArrayListIterator::Cast(object)->VisitRangeSlot(visitor); in VisitObjectBody()
|
/arkcompiler/ets_runtime/ecmascript/containers/ |
D | containers_private.cpp | 343 …SetFrozenFunction(thread, arrayListIteratorPrototype, "next", JSAPIArrayListIterator::Next, FuncLe… in InitializeArrayListIterator()
|
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/ |
D | snapshot_processor.cpp | 757 reinterpret_cast<uintptr_t>(JSAPIArrayListIterator::Next),
|