Lines Matching refs:_Self
1281 typedef EHABISectionIterator _Self; typedef
1289 static _Self begin(A& addressSpace, const UnwindInfoSections& sects) { in begin()
1290 return _Self(addressSpace, sects, 0); in begin()
1292 static _Self end(A& addressSpace, const UnwindInfoSections& sects) { in end()
1293 return _Self(addressSpace, sects, in end()
1300 _Self& operator++() { ++_i; return *this; } in operator ++()
1301 _Self& operator+=(size_t a) { _i += a; return *this; } in operator +=()
1302 _Self& operator--() { assert(_i > 0); --_i; return *this; } in operator --()
1303 _Self& operator-=(size_t a) { assert(_i >= a); _i -= a; return *this; } in operator -=()
1305 _Self operator+(size_t a) { _Self out = *this; out._i += a; return out; } in operator +()
1306 _Self operator-(size_t a) { assert(_i >= a); _Self out = *this; out._i -= a; return out; } in operator -()
1308 size_t operator-(const _Self& other) const { return _i - other._i; } in operator -()
1310 bool operator==(const _Self& other) const { in operator ==()
1316 bool operator!=(const _Self& other) const { in operator !=()