• Home
  • Raw
  • Download

Lines Matching refs:const_iterator

40     typedef /unspecified/ const_iterator;
62 const_iterator begin() const;
63 const_iterator end() const;
69 void erase(const_iterator position);
71 void erase(const_iterator first, const_iterator last);
80 const_iterator find(const key_type& k) const;
83 pair<const_iterator, const_iterator> equal_range(const key_type& k) const;
126 typedef /unspecified/ const_iterator;
148 const_iterator begin() const;
149 const_iterator end() const;
155 void erase(const_iterator position);
157 void erase(const_iterator first, const_iterator last);
166 const_iterator find(const key_type& k) const;
169 pair<const_iterator, const_iterator> equal_range(const key_type& k) const;
238 typedef typename __table::const_iterator iterator;
239 typedef typename __table::const_iterator const_iterator;
275 const_iterator begin() const {return __table_.begin();}
277 const_iterator end() const {return __table_.end();}
283 iterator insert(const_iterator, const value_type& __x) {return insert(__x).first;}
289 void erase(const_iterator __p) {__table_.erase(__p);}
293 void erase(const_iterator __first, const_iterator __last)
309 const_iterator find(const key_type& __k) const {return __table_.find(__k);}
316 pair<const_iterator, const_iterator> equal_range(const key_type& __k) const
414 typedef typename hash_set<_Value, _Hash, _Pred, _Alloc>::const_iterator
415 const_iterator;
416 for (const_iterator __i = __x.begin(), __ex = __x.end(), __ey = __y.end();
419 const_iterator __j = __y.find(*__i);
460 typedef typename __table::const_iterator iterator;
461 typedef typename __table::const_iterator const_iterator;
497 const_iterator begin() const {return __table_.begin();}
499 const_iterator end() const {return __table_.end();}
504 iterator insert(const_iterator, const value_type& __x) {return insert(__x);}
510 void erase(const_iterator __p) {__table_.erase(__p);}
514 void erase(const_iterator __first, const_iterator __last)
530 const_iterator find(const key_type& __k) const {return __table_.find(__k);}
537 pair<const_iterator, const_iterator> equal_range(const key_type& __k) const
636 typedef typename hash_multiset<_Value, _Hash, _Pred, _Alloc>::const_iterator
637 const_iterator;
638 typedef pair<const_iterator, const_iterator> _EqRng;
639 for (const_iterator __i = __x.begin(), __ex = __x.end(); __i != __ex;)