Lines Matching refs:end_
104 DCHECK_LT(ptr_, end_);
105 ptr_ += OpcodeLength(ptr_, end_);
117 const byte* end_;
118 iterator_base(const byte* ptr, const byte* end) : ptr_(ptr), end_(end) {}
128 DCHECK_LT(ptr_, end_);
144 DCHECK_LT(ptr_, end_);
162 return base::iterator_range<opcode_iterator>(opcode_iterator(pc_, end_),
163 opcode_iterator(end_, end_));
168 offset_iterator(start_, pc_, end_),
169 offset_iterator(start_, end_, end_));
178 if (pc_ < end_) {
179 pc_ += OpcodeLength(pc_, end_);
180 if (pc_ >= end_) pc_ = end_;
184 bool has_next() { return pc_ < end_; }