• Home
  • Raw
  • Download

Lines Matching defs:EHABISectionIterator

1258 struct EHABISectionIterator {  struct
1259 typedef EHABISectionIterator _Self;
1261 typedef typename A::pint_t value_type;
1262 typedef typename A::pint_t* pointer;
1263 typedef typename A::pint_t& reference;
1264 typedef size_t size_type;
1265 typedef size_t difference_type;
1267 static _Self begin(A& addressSpace, const UnwindInfoSections& sects) { in begin()
1270 static _Self end(A& addressSpace, const UnwindInfoSections& sects) { in end()
1275 EHABISectionIterator(A& addressSpace, const UnwindInfoSections& sects, size_t i) in EHABISectionIterator() argument
1278 _Self& operator++() { ++_i; return *this; } in operator ++()
1279 _Self& operator+=(size_t a) { _i += a; return *this; } in operator +=()
1280 _Self& operator--() { assert(_i > 0); --_i; return *this; } in operator --()
1281 _Self& operator-=(size_t a) { assert(_i >= a); _i -= a; return *this; } in operator -=()
1283 _Self operator+(size_t a) { _Self out = *this; out._i += a; return out; } in operator +()
1284 _Self operator-(size_t a) { assert(_i >= a); _Self out = *this; out._i -= a; return out; } in operator -()
1286 size_t operator-(const _Self& other) const { return _i - other._i; } in operator -()
1288 bool operator==(const _Self& other) const { in operator ==()
1294 bool operator!=(const _Self& other) const { in operator !=()
1300 typename A::pint_t operator*() const { return functionAddress(); } in operator *()
1302 typename A::pint_t functionAddress() const { in functionAddress()
1308 typename A::pint_t dataAddress() { in dataAddress()
1315 size_t _i;
1316 A* _addressSpace;
1317 const UnwindInfoSections* _sects;