Home
last modified time | relevance | path

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

/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
DUnwindCursor.hpp648 : _i(i), _addressSpace(&addressSpace), _sects(&sects) {} in EHABISectionIterator()
650 _Self& operator++() { ++_i; return *this; } in operator ++()
651 _Self& operator+=(size_t a) { _i += a; return *this; } in operator +=()
652 _Self& operator--() { assert(_i > 0); --_i; return *this; } in operator --()
653 _Self& operator-=(size_t a) { assert(_i >= a); _i -= a; return *this; } in operator -=()
655 _Self operator+(size_t a) { _Self out = *this; out._i += a; return out; } in operator +()
656 _Self operator-(size_t a) { assert(_i >= a); _Self out = *this; out._i -= a; return out; } in operator -()
658 size_t operator-(const _Self& other) { return _i - other._i; } in operator -()
663 return _i == other._i; in operator ==()
670 EHABIIndexEntry, _i, functionOffset); in functionAddress()
[all …]