Searched refs:usingIterator (Results 1 – 3 of 3) sorted by relevance
| /arkcompiler/ets_runtime/ecmascript/base/ |
| D | typed_array_helper.cpp | 122 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/ |
| D | builtins_typedarray.cpp | 184 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()
|
| D | builtins_array.cpp | 165 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()
|