Lines Matching refs:const_iterator

49       typedef typename _Base::const_iterator		_Base_const_iterator;  in _GLIBCXX_VISIBILITY()
62 set> const_iterator; in _GLIBCXX_VISIBILITY() typedef
64 typedef std::reverse_iterator<const_iterator> const_reverse_iterator; in _GLIBCXX_VISIBILITY()
158 const_iterator in _GLIBCXX_VISIBILITY()
160 { return const_iterator(_Base::begin(), this); } in _GLIBCXX_VISIBILITY()
166 const_iterator in _GLIBCXX_VISIBILITY()
168 { return const_iterator(_Base::end(), this); } in _GLIBCXX_VISIBILITY()
171 const_iterator in _GLIBCXX_VISIBILITY()
173 { return const_iterator(_Base::cbegin(), this); } in _GLIBCXX_VISIBILITY()
175 const_iterator in _GLIBCXX_VISIBILITY()
177 { return const_iterator(_Base::cend(), this); } in _GLIBCXX_VISIBILITY()
246 emplace_hint(const_iterator __pos, _Args&&... __args) in _GLIBCXX_VISIBILITY()
279 insert(const_iterator __pos, const value_type& __x) in _GLIBCXX_VISIBILITY()
290 insert(const_iterator __pos, value_type&& __x) in _GLIBCXX_VISIBILITY()
310 erase(const_iterator __pos) in _GLIBCXX_VISIBILITY()
334 erase(const_iterator __first, const_iterator __last) in _GLIBCXX_VISIBILITY()
390 const_iterator in _GLIBCXX_VISIBILITY()
394 return const_iterator(_Base::find(__x), this); in _GLIBCXX_VISIBILITY()
411 const_iterator in _GLIBCXX_VISIBILITY()
427 const_iterator in _GLIBCXX_VISIBILITY()
432 return const_iterator(_Base::lower_bound(__x), this); in _GLIBCXX_VISIBILITY()
450 const_iterator in _GLIBCXX_VISIBILITY()
467 const_iterator in _GLIBCXX_VISIBILITY()
472 return const_iterator(_Base::upper_bound(__x), this); in _GLIBCXX_VISIBILITY()
490 const_iterator in _GLIBCXX_VISIBILITY()
509 std::pair<const_iterator, const_iterator> in _GLIBCXX_VISIBILITY()
515 return std::make_pair(const_iterator(__base_ret.first, this), in _GLIBCXX_VISIBILITY()
516 const_iterator(__base_ret.second, this)); in _GLIBCXX_VISIBILITY()
534 std::pair<const_iterator, const_iterator> in _GLIBCXX_VISIBILITY()