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

/external/libcxxabi/src/Unwind/
H A DUnwindCursor.hpp631 typedef EHABISectionIterator _Self; typedef in struct:libunwind::EHABISectionIterator
640 static _Self begin(A& addressSpace, const UnwindInfoSections& sects) {
641 return _Self(addressSpace, sects, 0);
643 static _Self end(A& addressSpace, const UnwindInfoSections& sects) {
644 return _Self(addressSpace, sects, sects.arm_section_length);
650 _Self& operator++() { ++_i; return *this; }
651 _Self& operator+=(size_t a) { _i += a; return *this; }
652 _Self& operator--() { assert(_i > 0); --_i; return *this; }
653 _Self& operator-=(size_t a) { assert(_i >= a); _i -= a; return *this; }
655 _Self operato
[all...]

Completed in 126 milliseconds