Home | History | Annotate | Download | only in debug

Lines Matching defs:_M_iterator

94 { return (__it._Get_container_ptr() != 0) && !(__it._M_iterator == (__it._Get_container_ptr())->end()); }
104 return (__c != 0) && ((__n == 1 && __it._M_iterator != __c->end() ) ||
105 (__n == -1 && __it._M_iterator != __c->begin()));
113 ptrdiff_t __new_pos = (__it._M_iterator - __c->begin()) + __n;
140 __owned_link(__c), _M_iterator(*__REINTERPRET_CAST(const _Nonconst_iterator *, &__it)) {}
142 __owned_link(__c), _M_iterator(*(const _Nonconst_iterator*)&__it) {}
153 _Nonconst_iterator _M_iterator;
159 ++_M_iterator;
165 _Decrement(_M_iterator, _Iterator_category());
171 _Advance(_M_iterator, __n, _Iterator_category());
179 return _DBG_distance(__x._M_iterator,__y._M_iterator, _Iterator_category());
301 return *this->_M_iterator;
308 return __x._M_iterator == __y._M_iterator;
316 return _CompareIt(__x._M_iterator , __y._M_iterator, _Category());
324 return _CompareIt(__y._M_iterator , __x._M_iterator, _Category());
332 return !_CompareIt(__x._M_iterator , __y._M_iterator, _Category());
340 return !_CompareIt(__y._M_iterator , __x._M_iterator, _Category());
348 return __x._M_iterator != __y._M_iterator;
369 { return __it._M_iterator; }