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