Home | History | Annotate | Download | only in stl

Lines Matching defs:__first

49                                 _List_node_base* __first, _List_node_base* __last) {
53 __first->_M_prev->_M_next = __last;
54 __position->_M_prev->_M_next = __first;
59 __last->_M_prev = __first->_M_prev;
60 __first->_M_prev = __tmp;
141 _Literator __first = __that.begin();
143 while (__first != __last) {
144 _Literator __next = __first;
146 if (__pred(*__first)) __that.erase(__first);
147 __first = __next;
154 _Literator __first = __that.begin();
156 if (__first == __last) return;
157 _Literator __next = __first;
159 if (__binary_pred(*__first, *__next))
162 __first = __next;
163 __next = __first;