Home | History | Annotate | Download | only in stl

Lines Matching defs:__first1

109     iterator __first1 = begin();
113 while (__first1 != __last1 && __first2 != __last2)
114 *__first1++ = *__first2++;
116 erase(__first1, __last1);
171 _Literator __first1 = __that.begin();
176 while (__first1 != __last1 && __first2 != __last2) {
177 if (__comp(*__first2, *__first1)) {
178 _STLP_VERBOSE_ASSERT(!__comp(*__first1, *__first2), _StlMsg_INVALID_STRICT_WEAK_PREDICATE)
180 _List_global_inst::_Transfer(__first1._M_node, __first2._M_node, (++__next)._M_node);
184 ++__first1;
190 while (__first1 != __last1 && __first2 != __last2) {
191 if (__comp(*__first2, *__first1)) {
192 _STLP_VERBOSE_ASSERT(!__comp(*__first1, *__first2), _StlMsg_INVALID_STRICT_WEAK_PREDICATE)
193 __first1 = __that.insert(__first1, *__first2);
196 ++__first1;
199 __that.insert(__first1, __first2, __last2);