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

  /frameworks/native/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...]
  /system/core/include/sysutils/
List.h 89 typedef _ListIterator<U, Constness> _Iter;
97 _ListIterator(const _Iter& rhs) : mpNode(rhs.mpNode) {}
117 inline bool operator==(const _Iter& right) const {
120 inline bool operator!=(const _Iter& right) const {
137 inline _Iter& operator++() { // pre-increment
141 const _Iter operator++(int) { // post-increment
142 _Iter tmp(*this);
146 inline _Iter& operator--() { // pre-increment
150 const _Iter operator--(int) { // post-increment
151 _Iter tmp(*this)
    [all...]
  /system/netd/
List.h 89 typedef _ListIterator<U, Constness> _Iter;
97 _ListIterator(const _Iter& rhs) : mpNode(rhs.mpNode) {}
117 inline bool operator==(const _Iter& right) const {
120 inline bool operator!=(const _Iter& right) const {
137 inline _Iter& operator++() { // pre-increment
141 const _Iter operator++(int) { // post-increment
142 _Iter tmp(*this);
146 inline _Iter& operator--() { // pre-increment
150 const _Iter operator--(int) { // post-increment
151 _Iter tmp(*this)
    [all...]

Completed in 66 milliseconds