Lines Matching refs:const_iterator

54       typedef typename _Base::const_iterator	_Base_const_iterator;  in _GLIBCXX_VISIBILITY()
74 const_iterator; in _GLIBCXX_VISIBILITY() typedef
81 typedef std::reverse_iterator<const_iterator> const_reverse_iterator; in _GLIBCXX_VISIBILITY()
174 const_iterator in _GLIBCXX_VISIBILITY()
176 { return const_iterator(_Base::begin(), this); } in _GLIBCXX_VISIBILITY()
182 const_iterator in _GLIBCXX_VISIBILITY()
184 { return const_iterator(_Base::end(), this); } in _GLIBCXX_VISIBILITY()
203 const_iterator in _GLIBCXX_VISIBILITY()
205 { return const_iterator(_Base::begin(), this); } in _GLIBCXX_VISIBILITY()
207 const_iterator in _GLIBCXX_VISIBILITY()
209 { return const_iterator(_Base::end(), this); } in _GLIBCXX_VISIBILITY()
237 emplace_hint(const_iterator __pos, _Args&&... __args) in _GLIBCXX_VISIBILITY()
266 insert(const_iterator __position, const value_type& __x) in _GLIBCXX_VISIBILITY()
274 insert(const_iterator __position, value_type&& __x) in _GLIBCXX_VISIBILITY()
306 extract(const_iterator __position) in _GLIBCXX_VISIBILITY()
331 insert(const_iterator __hint, node_type&& __nh) in _GLIBCXX_VISIBILITY()
343 erase(const_iterator __position) in _GLIBCXX_VISIBILITY()
376 erase(const_iterator __first, const_iterator __last) in _GLIBCXX_VISIBILITY()
439 const_iterator in _GLIBCXX_VISIBILITY()
441 { return const_iterator(_Base::find(__x), this); } in _GLIBCXX_VISIBILITY()
454 const_iterator in _GLIBCXX_VISIBILITY()
467 const_iterator in _GLIBCXX_VISIBILITY()
469 { return const_iterator(_Base::lower_bound(__x), this); } in _GLIBCXX_VISIBILITY()
482 const_iterator in _GLIBCXX_VISIBILITY()
493 const_iterator in _GLIBCXX_VISIBILITY()
495 { return const_iterator(_Base::upper_bound(__x), this); } in _GLIBCXX_VISIBILITY()
508 const_iterator in _GLIBCXX_VISIBILITY()
524 std::pair<const_iterator, const_iterator> in _GLIBCXX_VISIBILITY()
529 return std::make_pair(const_iterator(__res.first, this), in _GLIBCXX_VISIBILITY()
530 const_iterator(__res.second, this)); in _GLIBCXX_VISIBILITY()
547 std::pair<const_iterator, const_iterator> in _GLIBCXX_VISIBILITY()