Searched refs:ArrayIteratorKind (Results 1 – 2 of 2) sorted by relevance
/third_party/node/deps/v8/src/compiler/ |
D | js-call-reducer.h | 123 enum class ArrayIteratorKind { kArrayLike, kTypedArray }; enum 124 Reduction ReduceArrayIterator(Node* node, ArrayIteratorKind array_kind,
|
D | js-call-reducer.cc | 4620 return ReduceArrayIterator(node, ArrayIteratorKind::kArrayLike, in ReduceJSCall() 4623 return ReduceArrayIterator(node, ArrayIteratorKind::kArrayLike, in ReduceJSCall() 4626 return ReduceArrayIterator(node, ArrayIteratorKind::kArrayLike, in ReduceJSCall() 4834 return ReduceArrayIterator(node, ArrayIteratorKind::kTypedArray, in ReduceJSCall() 4837 return ReduceArrayIterator(node, ArrayIteratorKind::kTypedArray, in ReduceJSCall() 4840 return ReduceArrayIterator(node, ArrayIteratorKind::kTypedArray, in ReduceJSCall() 6169 ArrayIteratorKind array_kind, in ReduceArrayIterator() 6185 if (array_kind == ArrayIteratorKind::kTypedArray && in ReduceArrayIterator() 6190 if (array_kind == ArrayIteratorKind::kTypedArray) { in ReduceArrayIterator()
|