Home | History | Annotate | Download | only in bits

Lines Matching refs:_M_next

49     _Fwd_list_node_base() : _M_next(0) { }
51 _Fwd_list_node_base* _M_next;
57 while (__end && __end->_M_next)
58 __end = __end->_M_next;
66 _Fwd_list_node_base* __keep = __begin->_M_next;
69 __begin->_M_next = __end->_M_next;
70 __end->_M_next = _M_next;
73 __begin->_M_next = 0;
74 _M_next = __keep;
81 _Fwd_list_node_base* __tail = _M_next;
84 while (_Fwd_list_node_base* __temp = __tail->_M_next)
86 _Fwd_list_node_base* __keep = _M_next;
87 _M_next = __temp;
88 __tail->_M_next = __temp->_M_next;
89 _M_next->_M_next = __keep;
147 _M_node = _M_node->_M_next;
155 _M_node = _M_node->_M_next;
168 _M_next() const
171 return _Fwd_list_iterator(_M_node->_M_next);
219 _M_node = _M_node->_M_next;
227 _M_node = _M_node->_M_next;
240 _M_next() const
243 return _Fwd_list_const_iterator(_M_node->_M_next);
321 this->_M_impl._M_head._M_next = __lst._M_impl._M_head._M_next;
322 __lst._M_impl._M_head._M_next = 0;
328 this->_M_impl._M_head._M_next = __lst._M_impl._M_head._M_next;
329 __lst._M_impl._M_head._M_next = 0;
350 __node->_M_next = 0;
675 { return iterator(this->_M_impl._M_head._M_next); }
684 { return const_iterator(this->_M_impl._M_head._M_next); }
711 { return const_iterator(this->_M_impl._M_head._M_next); }
737 { return this->_M_impl._M_head._M_next == 0; }
755 _Node* __front = static_cast<_Node*>(this->_M_impl._M_head._M_next);
766 _Node* __front = static_cast<_Node*>(this->_M_impl._M_head._M_next);
983 { std::swap(this->_M_impl._M_head._M_next,
984 __list._M_impl._M_head._M_next); }