Lines Matching defs:iterator
91 class V8_EXPORT_PRIVATE iterator {
93 bool operator!=(iterator const& other) const;
94 iterator& operator++();
106 iterator() : current_depth_(-1) {}
107 explicit iterator(Node* node);
125 iterator begin() const { return iterator(node_); }
126 iterator begin_without_receiver() const {
129 iterator begin_without_receiver_and_skip(int n_skips) {
130 iterator it = begin_without_receiver();
137 iterator end() const { return iterator(); }