Lines Matching refs:const_iterator
67 typedef __gnu_debug::_Safe_iterator<typename _Base::const_iterator,
68 multiset> const_iterator; typedef
75 typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
111 const_iterator
113 { return const_iterator(_Base::begin(), this); } in begin()
119 const_iterator
121 { return const_iterator(_Base::end(), this); } in end()
219 const_iterator
221 { return const_iterator(_Base::find(__x), this); } in find()
231 const_iterator
233 { return const_iterator(_Base::lower_bound(__x), this); } in lower_bound()
241 const_iterator
243 { return const_iterator(_Base::upper_bound(__x), this); } in upper_bound()
257 std::pair<const_iterator,const_iterator>
260 typedef typename _Base::const_iterator _Base_iterator; in equal_range()
263 return std::make_pair(const_iterator(__res.first, this), in equal_range()
264 const_iterator(__res.second, this)); in equal_range()
277 typedef typename _Base::const_iterator _Base_const_iterator; in _M_invalidate_all()