Home
last modified time | relevance | path

Searched refs:usingIterator (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/base/
Dtyped_array_helper.cpp122 JSHandle<JSTaggedValue> usingIterator = in CreateFromOrdinaryObject() local
127 if (!usingIterator->IsUndefined()) { in CreateFromOrdinaryObject()
132 … JSHandle<JSTaggedValue> iterator = JSIterator::GetIterator(thread, objectArg, usingIterator); in CreateFromOrdinaryObject()
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_typedarray.cpp184 JSHandle<JSTaggedValue> usingIterator = JSObject::GetMethod(thread, source, iteratorSymbol); in From() local
190 bool isArrIter = JSTaggedValue::SameValue(usingIterator, arrIter); in From()
191 bool isTypedArrIter = JSTaggedValue::SameValue(usingIterator, typedArrIter); in From()
196 if (!usingIterator->IsUndefined() && !(isArrIter || isTypedArrIter)) { in From()
198 JSHandle<JSTaggedValue> iterator = JSIterator::GetIterator(thread, source, usingIterator); in From()
Dbuiltins_array.cpp165 JSHandle<JSTaggedValue> usingIterator = JSObject::GetMethod(thread, items, iteratorSymbol); in From() local
170 if (!usingIterator->IsUndefined()) { in From()
173 return JSMapIterator::MapIteratorToList(thread, items, usingIterator); in From()
196 JSHandle<JSTaggedValue> iterator = JSIterator::GetIterator(thread, items, usingIterator); in From()