Lines Matching refs:block_
180 explicit NodeIterator(BlockType* block) V8_NOEXCEPT : block_(block) {}
181 NodeIterator(NodeIterator&& other) V8_NOEXCEPT : block_(other.block_),
188 return block_ == other.block_;
191 return block_ != other.block_;
197 block_ = block_->next_used();
201 NodeType* operator*() { return block_->at(index_); }
202 NodeType* operator->() { return block_->at(index_); }
205 BlockType* block_ = nullptr;