Home
last modified time | relevance | path

Searched refs:_Iter (Results 1 – 2 of 2) sorted by relevance

/system/core/libutils/include/utils/
DList.h90 typedef _ListIterator<U, Constness> _Iter; typedef
98 _ListIterator(const _Iter& rhs) : mpNode(rhs.mpNode) {} in _ListIterator()
118 inline bool operator==(const _Iter& right) const {
121 inline bool operator!=(const _Iter& right) const {
138 inline _Iter& operator++() { // pre-increment
142 const _Iter operator++(int) { // post-increment
143 _Iter tmp(*this);
147 inline _Iter& operator--() { // pre-increment
151 const _Iter operator--(int) { // post-increment
152 _Iter tmp(*this);
/system/keymaster/include/keymaster/
DList.h81 typedef _ListIterator<U, Constness> _Iter; typedef
89 _ListIterator(const _Iter& rhs) : mpNode(rhs.mpNode) {} in _ListIterator()
107 inline bool operator==(const _Iter& right) const { return mpNode == right.mpNode; }
109 inline bool operator!=(const _Iter& right) const { return mpNode != right.mpNode; }
125 inline _Iter& operator++() { // pre-increment
129 const _Iter operator++(int) { // post-increment
130 _Iter tmp(*this);
134 inline _Iter& operator--() { // pre-increment
138 const _Iter operator--(int) { // post-increment
139 _Iter tmp(*this);