Lines Matching refs:const_iterator
49 typedef typename _Base::const_iterator _Base_const_iterator; in _GLIBCXX_VISIBILITY()
64 multiset> const_iterator; in _GLIBCXX_VISIBILITY() typedef
66 typedef std::reverse_iterator<const_iterator> const_reverse_iterator; in _GLIBCXX_VISIBILITY()
161 const_iterator in _GLIBCXX_VISIBILITY()
163 { return const_iterator(_Base::begin(), this); } in _GLIBCXX_VISIBILITY()
169 const_iterator in _GLIBCXX_VISIBILITY()
171 { return const_iterator(_Base::end(), this); } in _GLIBCXX_VISIBILITY()
174 const_iterator in _GLIBCXX_VISIBILITY()
176 { return const_iterator(_Base::cbegin(), this); } in _GLIBCXX_VISIBILITY()
178 const_iterator in _GLIBCXX_VISIBILITY()
180 { return const_iterator(_Base::cend(), this); } in _GLIBCXX_VISIBILITY()
249 emplace_hint(const_iterator __pos, _Args&&... __args) in _GLIBCXX_VISIBILITY()
277 insert(const_iterator __pos, const value_type& __x) in _GLIBCXX_VISIBILITY()
289 insert(const_iterator __pos, value_type&& __x) in _GLIBCXX_VISIBILITY()
320 erase(const_iterator __pos) in _GLIBCXX_VISIBILITY()
344 erase(const_iterator __first, const_iterator __last) in _GLIBCXX_VISIBILITY()
402 const_iterator in _GLIBCXX_VISIBILITY()
406 return const_iterator(_Base::find(__x), this); in _GLIBCXX_VISIBILITY()
423 const_iterator in _GLIBCXX_VISIBILITY()
440 const_iterator in _GLIBCXX_VISIBILITY()
445 return const_iterator(_Base::lower_bound(__x), this); in _GLIBCXX_VISIBILITY()
463 const_iterator in _GLIBCXX_VISIBILITY()
482 const_iterator in _GLIBCXX_VISIBILITY()
487 return const_iterator(_Base::upper_bound(__x), this); in _GLIBCXX_VISIBILITY()
505 const_iterator in _GLIBCXX_VISIBILITY()
526 std::pair<const_iterator,const_iterator> in _GLIBCXX_VISIBILITY()
532 return std::make_pair(const_iterator(__base_ret.first, this), in _GLIBCXX_VISIBILITY()
533 const_iterator(__base_ret.second, this)); in _GLIBCXX_VISIBILITY()
551 std::pair<const_iterator, const_iterator> in _GLIBCXX_VISIBILITY()