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.cpp124 JSHandle<JSTaggedValue> usingIterator = in CreateFromOrdinaryObject() local
129 if (!usingIterator->IsUndefined()) { in CreateFromOrdinaryObject()
134 … JSHandle<JSTaggedValue> iterator = JSIterator::GetIterator(thread, objectArg, usingIterator); in CreateFromOrdinaryObject()
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_typedarray.cpp185 JSHandle<JSTaggedValue> usingIterator = JSObject::GetMethod(thread, source, iteratorSymbol); in From() local
191 bool isArrIter = JSTaggedValue::SameValue(usingIterator, arrIter); in From()
192 bool isTypedArrIter = JSTaggedValue::SameValue(usingIterator, typedArrIter); in From()
210 if (!usingIterator->IsUndefined() && !(isArrIter || (isTypedArrIter && isNativeFunc))) { in From()
212 JSHandle<JSTaggedValue> iterator = JSIterator::GetIterator(thread, source, usingIterator); in From()
Dbuiltins_array.cpp181 JSHandle<JSTaggedValue> usingIterator = JSObject::GetMethod(thread, items, iteratorSymbol); in From() local
186 if (!usingIterator->IsUndefined()) { in From()
189 return JSMapIterator::MapIteratorToList(thread, items, usingIterator); in From()
212 JSHandle<JSTaggedValue> iterator = JSIterator::GetIterator(thread, items, usingIterator); in From()