Lines Matching defs:EHABISectionIterator
644 struct EHABISectionIterator { struct
645 typedef EHABISectionIterator _Self;
647 typedef std::random_access_iterator_tag iterator_category;
648 typedef typename A::pint_t value_type;
649 typedef typename A::pint_t* pointer;
650 typedef typename A::pint_t& reference;
651 typedef size_t size_type;
652 typedef size_t difference_type;
654 static _Self begin(A& addressSpace, const UnwindInfoSections& sects) { in begin()
657 static _Self end(A& addressSpace, const UnwindInfoSections& sects) { in end()
661 EHABISectionIterator(A& addressSpace, const UnwindInfoSections& sects, size_t i) in EHABISectionIterator() function
664 _Self& operator++() { ++_i; return *this; } in operator ++()
665 _Self& operator+=(size_t a) { _i += a; return *this; } in operator +=()
666 _Self& operator--() { assert(_i > 0); --_i; return *this; } in operator --()
667 _Self& operator-=(size_t a) { assert(_i >= a); _i -= a; return *this; } in operator -=()
669 _Self operator+(size_t a) { _Self out = *this; out._i += a; return out; } in operator +()
670 _Self operator-(size_t a) { assert(_i >= a); _Self out = *this; out._i -= a; return out; } in operator -()
672 size_t operator-(const _Self& other) { return _i - other._i; } in operator -()
674 bool operator==(const _Self& other) const { in operator ==()
680 typename A::pint_t operator*() const { return functionAddress(); } in operator *()
682 typename A::pint_t functionAddress() const { in functionAddress()
688 typename A::pint_t dataAddress() { in dataAddress()
695 size_t _i;
696 A* _addressSpace;
697 const UnwindInfoSections* _sects;