Lines Matching refs:const_iterator

55       typedef typename _Base::const_iterator	_Base_const_iterator;  in _GLIBCXX_VISIBILITY()
75 multimap> const_iterator; in _GLIBCXX_VISIBILITY() typedef
82 typedef std::reverse_iterator<const_iterator> const_reverse_iterator; in _GLIBCXX_VISIBILITY()
175 const_iterator in _GLIBCXX_VISIBILITY()
177 { return const_iterator(_Base::begin(), this); } in _GLIBCXX_VISIBILITY()
183 const_iterator in _GLIBCXX_VISIBILITY()
185 { return const_iterator(_Base::end(), this); } in _GLIBCXX_VISIBILITY()
204 const_iterator in _GLIBCXX_VISIBILITY()
206 { return const_iterator(_Base::begin(), this); } in _GLIBCXX_VISIBILITY()
208 const_iterator in _GLIBCXX_VISIBILITY()
210 { return const_iterator(_Base::end(), this); } in _GLIBCXX_VISIBILITY()
235 emplace_hint(const_iterator __pos, _Args&&... __args) in _GLIBCXX_VISIBILITY()
273 insert(const_iterator __position, const value_type& __x) in _GLIBCXX_VISIBILITY()
286 insert(const_iterator __position, value_type&& __x) in _GLIBCXX_VISIBILITY()
296 insert(const_iterator __position, _Pair&& __x) in _GLIBCXX_VISIBILITY()
325 extract(const_iterator __position) in _GLIBCXX_VISIBILITY()
346 insert(const_iterator __hint, node_type&& __nh) in _GLIBCXX_VISIBILITY()
357 erase(const_iterator __position) in _GLIBCXX_VISIBILITY()
367 { return erase(const_iterator(__position)); } in _GLIBCXX_VISIBILITY()
396 erase(const_iterator __first, const_iterator __last) in _GLIBCXX_VISIBILITY()
466 const_iterator in _GLIBCXX_VISIBILITY()
468 { return const_iterator(_Base::find(__x), this); } in _GLIBCXX_VISIBILITY()
474 const_iterator in _GLIBCXX_VISIBILITY()
494 const_iterator in _GLIBCXX_VISIBILITY()
496 { return const_iterator(_Base::lower_bound(__x), this); } in _GLIBCXX_VISIBILITY()
502 const_iterator in _GLIBCXX_VISIBILITY()
520 const_iterator in _GLIBCXX_VISIBILITY()
522 { return const_iterator(_Base::upper_bound(__x), this); } in _GLIBCXX_VISIBILITY()
528 const_iterator in _GLIBCXX_VISIBILITY()
554 std::pair<const_iterator,const_iterator> in _GLIBCXX_VISIBILITY()
559 return std::make_pair(const_iterator(__res.first, this), in _GLIBCXX_VISIBILITY()
560 const_iterator(__res.second, this)); in _GLIBCXX_VISIBILITY()
567 std::pair<const_iterator, const_iterator> in _GLIBCXX_VISIBILITY()