Home
last modified time | relevance | path

Searched refs:it_ (Results 1 – 2 of 2) sorted by relevance

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/
Drepeated_field.h2083 RepeatedPtrIterator() : it_(NULL) {}
2084 explicit RepeatedPtrIterator(void* const* it) : it_(it) {}
2090 : it_(other.it_) {
2098 reference operator*() const { return *reinterpret_cast<Element*>(*it_); }
2102 iterator& operator++() { ++it_; return *this; }
2103 iterator operator++(int) { return iterator(it_++); }
2104 iterator& operator--() { --it_; return *this; }
2105 iterator operator--(int) { return iterator(it_--); }
2108 bool operator==(const iterator& x) const { return it_ == x.it_; }
2109 bool operator!=(const iterator& x) const { return it_ != x.it_; }
[all …]
Dmap.h1392 : iterator_base(iterator_base::kNew), it_(it) {} in const_iterator()
1395 : iterator_base(other), it_(other.it_), dit_(other.dit_) {} in const_iterator()
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) {} in iterator()
1440 return this->OldStyle() ? *dit_->second : *it_->value();
1448 ++it_;
[all …]