Home | History | Annotate | Download | only in indexed_db

Lines Matching refs:it_

75     explicit inline iterator(typename std::list<T>::iterator it) : it_(it) {}
77 ++it_;
86 --it_;
94 inline value_type& operator*() { return *it_; }
95 inline value_type* operator->() { return &(*it_); }
96 inline bool operator==(const iterator& rhs) const { return it_ == rhs.it_; }
97 inline bool operator!=(const iterator& rhs) const { return it_ != rhs.it_; }
99 inline operator const_iterator() const { return const_iterator(it_); }
102 typename std::list<T>::iterator it_;
115 : it_(it) {}
117 ++it_;
126 --it_;
134 inline const value_type& operator*() { return *it_; }
135 inline const value_type* operator->() { return &(*it_); }
137 return it_ == rhs.it_;
140 return it_ != rhs.it_;
144 typename std::list<T>::const_iterator it_;