Lines Matching refs:second_
326 second_current_ ? (*second_).second : second_.def_value());
329 auto pair = *second_;
337 iterator old_second = second_;
344 ++second_;
345 DCHECK(old_second < second_);
347 return *this = double_iterator(first_, second_);
351 : first_(first), second_(second) {
352 if (first_ == second_) {
354 } else if (first_ < second_) {
358 DCHECK(second_ < first_);
365 return first_ != other.first_ || second_ != other.second_;
368 bool is_end() const { return first_.is_end() && second_.is_end(); }
372 iterator second_;