Searched defs:_Iter (Results 1 - 1 of 1) sorted by relevance

/frameworks/native/include/utils/
H A DList.h88 typedef _ListIterator<U, Constness> _Iter; typedef in class:android::List::_ListIterator
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 tm
[all...]

Completed in 526 milliseconds