Home | History | Annotate | Download | only in protobuf

Lines Matching refs:it_

1392         : iterator_base(iterator_base::kNew), it_(it) {}
1395 : iterator_base(other), it_(other.it_), dit_(other.dit_) {}
1398 return this->OldStyle() ? *dit_->second : *it_->value();
1406 ++it_;
1410 return this->OldStyle() ? const_iterator(dit_++) : const_iterator(it_++);
1416 return a.OldStyle() ? (a.dit_ == b.dit_) : (a.it_ == b.it_);
1423 InnerIt it_;
1437 : iterator_base(iterator_base::kNew), it_(it) {}
1440 return this->OldStyle() ? *dit_->second : *it_->value();
1448 ++it_;
1452 return this->OldStyle() ? iterator(dit_++) : iterator(it_++);
1459 const_iterator(typename InnerMap::const_iterator(it_));
1465 return a.OldStyle() ? a.dit_ == b.dit_ : a.it_ == b.it_;
1474 InnerIt it_;
1605 elements_->erase(i.it_);