• Home
  • Raw
  • Download

Lines Matching defs:EHABISectionIterator

1231 struct EHABISectionIterator {  struct
1232 typedef EHABISectionIterator _Self;
1234 typedef typename A::pint_t value_type;
1235 typedef typename A::pint_t* pointer;
1236 typedef typename A::pint_t& reference;
1237 typedef size_t size_type;
1238 typedef size_t difference_type;
1240 static _Self begin(A& addressSpace, const UnwindInfoSections& sects) { in begin()
1243 static _Self end(A& addressSpace, const UnwindInfoSections& sects) { in end()
1248 EHABISectionIterator(A& addressSpace, const UnwindInfoSections& sects, size_t i) in EHABISectionIterator() argument
1251 _Self& operator++() { ++_i; return *this; } in operator ++()
1252 _Self& operator+=(size_t a) { _i += a; return *this; } in operator +=()
1253 _Self& operator--() { assert(_i > 0); --_i; return *this; } in operator --()
1254 _Self& operator-=(size_t a) { assert(_i >= a); _i -= a; return *this; } in operator -=()
1256 _Self operator+(size_t a) { _Self out = *this; out._i += a; return out; } in operator +()
1257 _Self operator-(size_t a) { assert(_i >= a); _Self out = *this; out._i -= a; return out; } in operator -()
1259 size_t operator-(const _Self& other) { return _i - other._i; } in operator -()
1261 bool operator==(const _Self& other) const { in operator ==()
1267 typename A::pint_t operator*() const { return functionAddress(); } in operator *()
1269 typename A::pint_t functionAddress() const { in functionAddress()
1275 typename A::pint_t dataAddress() { in dataAddress()
1282 size_t _i;
1283 A* _addressSpace;
1284 const UnwindInfoSections* _sects;