Lines Matching defs:iterator
35 // Minimal iterator implementation for use in ranged-for.
36 class V8_EXPORT_PRIVATE iterator final {
38 iterator(int case_value, int table_offset, int table_end,
39 const BytecodeArrayIterator* iterator);
42 iterator& operator++();
43 bool operator!=(const iterator& other);
55 JumpTableTargetOffsets(const BytecodeArrayIterator* iterator, int table_start,
58 iterator begin() const;
59 iterator end() const;
139 // Returns an iterator over the absolute offsets of the targets of the current
150 static void UpdatePointersCallback(void* iterator) {
151 reinterpret_cast<BytecodeArrayIterator*>(iterator)->UpdatePointers();