Home | History | Annotate | Download | only in stl

Lines Matching defs:__last

49                                 _List_node_base* __first, _List_node_base* __last) {
50 if (__position != __last) {
52 __last->_M_prev->_M_next = __position;
53 __first->_M_prev->_M_next = __last;
58 __position->_M_prev = __last->_M_prev;
59 __last->_M_prev = __first->_M_prev;
142 _Literator __last = __that.end();
143 while (__first != __last) {
155 _Literator __last = __that.end();
156 if (__first == __last) return;
158 while (++__next != __last) {