HomeSort by relevance Sort by last modified time
    Searched refs:_Iter (Results 1 - 6 of 6) sorted by null

  /frameworks/base/include/utils/
List.h 88 typedef _ListIterator<U, Constness> _Iter;
96 _ListIterator(const _Iter& rhs) : mpNode(rhs.mpNode) {}
116 inline bool operator==(const _Iter& right) const {
119 inline bool operator!=(const _Iter& right) const {
136 inline _Iter& operator++() { // pre-increment
140 const _Iter operator++(int) { // post-increment
141 _Iter tmp(*this);
145 inline _Iter& operator--() { // pre-increment
149 const _Iter operator--(int) { // post-increment
150 _Iter tmp(*this)
    [all...]
  /external/stlport/stlport/stl/
_iterator_base.h 214 template <class _Iter>
215 inline _STLP_TYPENAME_ON_RETURN_TYPE _STLP_STD::iterator_traits<_Iter>::iterator_category
216 __iterator_category(const _Iter&, const __false_type&) {
217 typedef _STLP_TYPENAME _STLP_STD::iterator_traits<_Iter>::iterator_category _Category;
226 template <class _Iter>
227 inline _STLP_TYPENAME_ON_RETURN_TYPE _STLP_STD::iterator_traits<_Iter>::difference_type*
228 __distance_type(const _Iter&, const __false_type&) {
229 typedef _STLP_TYPENAME _STLP_STD::iterator_traits<_Iter>::difference_type _diff_type;
238 template <class _Iter>
239 inline _STLP_TYPENAME_ON_RETURN_TYPE _STLP_STD::iterator_traits<_Iter>::value_type
    [all...]
_iterator.h 68 template <class _Iter>
69 reverse_iterator(const reverse_iterator<_Iter>& __x) : current(__x.base()) {}
70 template <class _Iter>
71 _Self& operator = (const reverse_iterator<_Iter>& __x) { current = __x.base(); return *this; }
concept_checks.h 497 template <class _Iter>
499 typedef typename __STD::iterator_traits<_Iter>::value_type value_type;
502 template <class _Iter>
504 typedef typename __STD::iterator_traits<_Iter>::difference_type
508 template <class _Iter>
510 typedef typename __STD::iterator_traits<_Iter>::reference reference;
513 template <class _Iter>
515 typedef typename __STD::iterator_traits<_Iter>::pointer pointer;
518 template <class _Iter>
520 typedef typename __STD::iterator_traits<_Iter>::iterator_categor
    [all...]
_uninitialized.h 402 template <class _Iter, class _Tp>
404 __uninitialized_copy_fill(_Iter __first1, _Iter __last1, _Iter __first2, _Iter __last2,
406 _Iter __mid2 = uninitialized_copy(__first1, __last1, __first2);
  /external/astl/include/
iterator 114 template<typename _Iter>
115 __wrapper_iterator(const __wrapper_iterator<_Iter, _Container>& i)

Completed in 39 milliseconds