Lines Matching refs:end_
102 DCHECK_LT(ptr_, end_);
103 ptr_ += OpcodeLength(ptr_, end_);
115 const byte* end_;
116 iterator_base(const byte* ptr, const byte* end) : ptr_(ptr), end_(end) {}
126 DCHECK_LT(ptr_, end_);
142 DCHECK_LT(ptr_, end_);
160 return base::iterator_range<opcode_iterator>(opcode_iterator(pc_, end_),
161 opcode_iterator(end_, end_));
166 offset_iterator(start_, pc_, end_),
167 offset_iterator(start_, end_, end_));
176 if (pc_ < end_) {
177 pc_ += OpcodeLength(pc_, end_);
178 if (pc_ >= end_) pc_ = end_;
182 bool has_next() { return pc_ < end_; }