Lines Matching refs:const_iterator

55       typedef typename _Base::const_iterator	_Base_const_iterator;  in _GLIBCXX_VISIBILITY()
85 const_iterator; in _GLIBCXX_VISIBILITY() typedef
92 typedef std::reverse_iterator<const_iterator> const_reverse_iterator; in _GLIBCXX_VISIBILITY()
180 const_iterator in _GLIBCXX_VISIBILITY()
182 { return const_iterator(_Base::begin(), this); } in _GLIBCXX_VISIBILITY()
188 const_iterator in _GLIBCXX_VISIBILITY()
190 { return const_iterator(_Base::end(), this); } in _GLIBCXX_VISIBILITY()
209 const_iterator in _GLIBCXX_VISIBILITY()
211 { return const_iterator(_Base::begin(), this); } in _GLIBCXX_VISIBILITY()
213 const_iterator in _GLIBCXX_VISIBILITY()
215 { return const_iterator(_Base::end(), this); } in _GLIBCXX_VISIBILITY()
250 emplace_hint(const_iterator __pos, _Args&&... __args) in _GLIBCXX_VISIBILITY()
298 insert(const_iterator __position, const value_type& __x) in _GLIBCXX_VISIBILITY()
311 insert(const_iterator __position, value_type&& __x) in _GLIBCXX_VISIBILITY()
321 insert(const_iterator __position, _Pair&& __x) in _GLIBCXX_VISIBILITY()
368 try_emplace(const_iterator __hint, const key_type& __k, in _GLIBCXX_VISIBILITY()
382 try_emplace(const_iterator __hint, key_type&& __k, _Args&&... __args) in _GLIBCXX_VISIBILITY()
413 insert_or_assign(const_iterator __hint, in _GLIBCXX_VISIBILITY()
427 insert_or_assign(const_iterator __hint, key_type&& __k, _Obj&& __obj) in _GLIBCXX_VISIBILITY()
444 extract(const_iterator __position) in _GLIBCXX_VISIBILITY()
469 insert(const_iterator __hint, node_type&& __nh) in _GLIBCXX_VISIBILITY()
480 erase(const_iterator __position) in _GLIBCXX_VISIBILITY()
497 { return erase(const_iterator(__position)); } in _GLIBCXX_VISIBILITY()
524 erase(const_iterator __first, const_iterator __last) in _GLIBCXX_VISIBILITY()
594 const_iterator in _GLIBCXX_VISIBILITY()
596 { return const_iterator(_Base::find(__x), this); } in _GLIBCXX_VISIBILITY()
602 const_iterator in _GLIBCXX_VISIBILITY()
622 const_iterator in _GLIBCXX_VISIBILITY()
624 { return const_iterator(_Base::lower_bound(__x), this); } in _GLIBCXX_VISIBILITY()
630 const_iterator in _GLIBCXX_VISIBILITY()
648 const_iterator in _GLIBCXX_VISIBILITY()
650 { return const_iterator(_Base::upper_bound(__x), this); } in _GLIBCXX_VISIBILITY()
656 const_iterator in _GLIBCXX_VISIBILITY()
682 std::pair<const_iterator,const_iterator> in _GLIBCXX_VISIBILITY()
687 return std::make_pair(const_iterator(__res.first, this), in _GLIBCXX_VISIBILITY()
688 const_iterator(__res.second, this)); in _GLIBCXX_VISIBILITY()
695 std::pair<const_iterator, const_iterator> in _GLIBCXX_VISIBILITY()