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

/external/libunwind_llvm/src/
H A DUnwindCursor.hpp645 typedef EHABISectionIterator _Self; typedef in struct:libunwind::EHABISectionIterator
654 static _Self begin(A& addressSpace, const UnwindInfoSections& sects) {
655 return _Self(addressSpace, sects, 0);
657 static _Self end(A& addressSpace, const UnwindInfoSections& sects) {
658 return _Self(addressSpace, sects, sects.arm_section_length);
664 _Self& operator++() { ++_i; return *this; }
665 _Self& operator+=(size_t a) { _i += a; return *this; }
666 _Self& operator--() { assert(_i > 0); --_i; return *this; }
667 _Self& operator-=(size_t a) { assert(_i >= a); _i -= a; return *this; }
669 _Self operato
[all...]

Completed in 123 milliseconds