Lines Matching refs:const_iterator
55 typedef typename _Base::const_iterator _Base_const_iterator; in _GLIBCXX_VISIBILITY()
85 multimap> const_iterator; in _GLIBCXX_VISIBILITY() typedef
92 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()
238 emplace_hint(const_iterator __pos, _Args&&... __args) in _GLIBCXX_VISIBILITY()
276 insert(const_iterator __position, const value_type& __x) in _GLIBCXX_VISIBILITY()
289 insert(const_iterator __position, value_type&& __x) in _GLIBCXX_VISIBILITY()
299 insert(const_iterator __position, _Pair&& __x) in _GLIBCXX_VISIBILITY()
328 extract(const_iterator __position) in _GLIBCXX_VISIBILITY()
349 insert(const_iterator __hint, node_type&& __nh) in _GLIBCXX_VISIBILITY()
360 erase(const_iterator __position) in _GLIBCXX_VISIBILITY()
377 { return erase(const_iterator(__position)); } in _GLIBCXX_VISIBILITY()
406 erase(const_iterator __first, const_iterator __last) in _GLIBCXX_VISIBILITY()
476 const_iterator in _GLIBCXX_VISIBILITY()
478 { return const_iterator(_Base::find(__x), this); } in _GLIBCXX_VISIBILITY()
484 const_iterator in _GLIBCXX_VISIBILITY()
504 const_iterator in _GLIBCXX_VISIBILITY()
506 { return const_iterator(_Base::lower_bound(__x), this); } in _GLIBCXX_VISIBILITY()
512 const_iterator in _GLIBCXX_VISIBILITY()
530 const_iterator in _GLIBCXX_VISIBILITY()
532 { return const_iterator(_Base::upper_bound(__x), this); } in _GLIBCXX_VISIBILITY()
538 const_iterator in _GLIBCXX_VISIBILITY()
564 std::pair<const_iterator,const_iterator> in _GLIBCXX_VISIBILITY()
569 return std::make_pair(const_iterator(__res.first, this), in _GLIBCXX_VISIBILITY()
570 const_iterator(__res.second, this)); in _GLIBCXX_VISIBILITY()
577 std::pair<const_iterator, const_iterator> in _GLIBCXX_VISIBILITY()