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

  /external/astl/include/
list 66 typedef ListIterator<_T> iterator_type;
84 iterator_type& operator++() { mNode = mNode->mNext; return *this; }
85 iterator_type& operator++(int) {
86 iterator_type tmp = *this;
91 iterator_type& operator--() { mNode = mNode->mPrev; return *this; }
92 iterator_type& operator--(int) {
93 iterator_type tmp = *this;
98 bool operator==(const iterator_type& o) const { return mNode == o.mNode; }
99 bool operator!=(const iterator_type& o) const { return mNode != o.mNode; }
107 typedef ListConstIterator<_T> iterator_type;
    [all...]
iterator 101 typedef _Iterator iterator_type;
240 static typename _Iterator::iterator_type base(_Iterator it) {
  /external/stlport/stlport/stl/
_iterator.h 61 typedef _Iterator iterator_type; typedef in class:reverse_iterator
64 explicit reverse_iterator(iterator_type __x) : current(__x) {}
74 iterator_type base() const { return current; }
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_iterator.h 61 typedef _Iterator iterator_type; typedef in class:reverse_iterator
64 explicit reverse_iterator(iterator_type __x) : current(__x) {}
74 iterator_type base() const { return current; }
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
stl_iterator.h 101 typedef _Iterator iterator_type; typedef in class:reverse_iterator
120 reverse_iterator(iterator_type __x) : current(__x) { }
139 iterator_type
674 typedef _Iterator iterator_type; typedef in class:__normal_iterator
888 typedef _Iterator iterator_type; typedef in class:move_iterator
903 move_iterator(iterator_type __i)
910 iterator_type
    [all...]
stl_algobase.h 276 static typename _Iterator::iterator_type
294 static typename _Iterator::iterator_type
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/
debug_map_base.hpp 265 typedef const_key_set_iterator iterator_type; typedef
266 for (iterator_type it = m_key_set.begin(); it != m_key_set.end(); ++it)

Completed in 150 milliseconds