Lines Matching refs:const_iterator
67 typedef __gnu_debug::_Safe_iterator<typename _Base::const_iterator, map>
68 const_iterator; typedef
75 typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
113 const_iterator
115 { return const_iterator(_Base::begin(), this); } in begin()
121 const_iterator
123 { return const_iterator(_Base::end(), this); } in end()
230 const_iterator
232 { return const_iterator(_Base::find(__x), this); } in find()
240 const_iterator
242 { return const_iterator(_Base::lower_bound(__x), this); } in lower_bound()
248 const_iterator
250 { return const_iterator(_Base::upper_bound(__x), this); } in upper_bound()
262 std::pair<const_iterator,const_iterator>
265 typedef typename _Base::const_iterator _Base_const_iterator; in equal_range()
268 return std::make_pair(const_iterator(__res.first, this), in equal_range()
269 const_iterator(__res.second, this)); in equal_range()
282 typedef typename _Base::const_iterator _Base_const_iterator; in _M_invalidate_all()