Home | History | Annotate | Download | only in stl

Lines Matching defs:__cur

46   _Slist_node_base* __cur = __before_first->_M_next;
47 while (__cur != __last_node) {
48 _Node* __tmp = __STATIC_CAST(_Node*, __cur);
49 __cur = __cur->_M_next;
107 _Node_base* __cur = &this->_M_head._M_data;
108 while (__cur->_M_next != 0 && __len > 0) {
110 __cur = __cur->_M_next;
112 if (__cur->_M_next)
113 this->_M_erase_after(__cur, 0);
115 _M_insert_after_fill(__cur, __len, __x);
120 _Node_base* __cur = &this->_M_head._M_data;
121 while (__cur && __cur->_M_next) {
122 if (__STATIC_CAST(_Node*, __cur->_M_next)->_M_data == __val)
123 this->_M_erase_after(__cur);
125 __cur = __cur->_M_next;