Home | History | Annotate | Download | only in tests

Lines Matching defs:it_

21   MyIter(const MyIter& other) : it_(other.it_) {}
22 explicit MyIter(MyMap::const_iterator it) : it_(it) {}
24 ++it_;
27 const scoped_refptr<const Foo> operator*() { return it_->second; }
28 bool operator!=(const MyIter& other) { return it_ != other.it_; }
29 bool operator==(const MyIter& other) { return it_ == other.it_; }
32 MyMap::const_iterator it_;