Searched refs:_Iter (Results 1 – 3 of 3) sorted by relevance
/aosp12/system/core/libutils/include/utils/ |
H A D | List.h | 90 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);
|
/aosp12/system/keymaster/include/keymaster/ |
H A D | List.h | 81 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);
|
/aosp12/hardware/interfaces/automotive/can/1.0/default/libc++fs/include/automotive/ |
H A D | filesystem | 669 _Iter __e = __b; 678 template <class _Iter, bool _IsIt = __is_input_iterator<_Iter>::value, 682 template <class _Iter> 684 _Iter, true, 691 static _Iter __range_begin(_Iter __b) { return __b; } 726 template <class _Iter> 727 static void __append_range(string& __dest, _Iter __b, _Iter __e) { 736 template <class _Iter> 760 template <class _Iter> 762 __append_range(string& __dest, _Iter __b, _Iter __e) { [all …]
|