Lines Matching refs:const_iterator
55 typedef typename _Base::const_iterator _Base_const_iterator; in _GLIBCXX_VISIBILITY()
75 const_iterator; in _GLIBCXX_VISIBILITY() typedef
82 typedef std::reverse_iterator<const_iterator> const_reverse_iterator; in _GLIBCXX_VISIBILITY()
178 const_iterator in _GLIBCXX_VISIBILITY()
180 { return const_iterator(_Base::begin(), this); } in _GLIBCXX_VISIBILITY()
186 const_iterator in _GLIBCXX_VISIBILITY()
188 { return const_iterator(_Base::end(), this); } in _GLIBCXX_VISIBILITY()
207 const_iterator in _GLIBCXX_VISIBILITY()
209 { return const_iterator(_Base::begin(), this); } in _GLIBCXX_VISIBILITY()
211 const_iterator in _GLIBCXX_VISIBILITY()
213 { return const_iterator(_Base::end(), this); } in _GLIBCXX_VISIBILITY()
248 emplace_hint(const_iterator __pos, _Args&&... __args) in _GLIBCXX_VISIBILITY()
296 insert(const_iterator __position, const value_type& __x) in _GLIBCXX_VISIBILITY()
309 insert(const_iterator __position, value_type&& __x) in _GLIBCXX_VISIBILITY()
319 insert(const_iterator __position, _Pair&& __x) in _GLIBCXX_VISIBILITY()
366 try_emplace(const_iterator __hint, const key_type& __k, in _GLIBCXX_VISIBILITY()
380 try_emplace(const_iterator __hint, key_type&& __k, _Args&&... __args) in _GLIBCXX_VISIBILITY()
411 insert_or_assign(const_iterator __hint, in _GLIBCXX_VISIBILITY()
425 insert_or_assign(const_iterator __hint, key_type&& __k, _Obj&& __obj) in _GLIBCXX_VISIBILITY()
442 extract(const_iterator __position) in _GLIBCXX_VISIBILITY()
467 insert(const_iterator __hint, node_type&& __nh) in _GLIBCXX_VISIBILITY()
478 erase(const_iterator __position) in _GLIBCXX_VISIBILITY()
488 { return erase(const_iterator(__position)); } in _GLIBCXX_VISIBILITY()
515 erase(const_iterator __first, const_iterator __last) in _GLIBCXX_VISIBILITY()
585 const_iterator in _GLIBCXX_VISIBILITY()
587 { return const_iterator(_Base::find(__x), this); } in _GLIBCXX_VISIBILITY()
593 const_iterator in _GLIBCXX_VISIBILITY()
613 const_iterator in _GLIBCXX_VISIBILITY()
615 { return const_iterator(_Base::lower_bound(__x), this); } in _GLIBCXX_VISIBILITY()
621 const_iterator in _GLIBCXX_VISIBILITY()
639 const_iterator in _GLIBCXX_VISIBILITY()
641 { return const_iterator(_Base::upper_bound(__x), this); } in _GLIBCXX_VISIBILITY()
647 const_iterator in _GLIBCXX_VISIBILITY()
673 std::pair<const_iterator,const_iterator> in _GLIBCXX_VISIBILITY()
678 return std::make_pair(const_iterator(__res.first, this), in _GLIBCXX_VISIBILITY()
679 const_iterator(__res.second, this)); in _GLIBCXX_VISIBILITY()
686 std::pair<const_iterator, const_iterator> in _GLIBCXX_VISIBILITY()