Lines Matching refs:__next
420 iterator __next = __first;
421 while (++__next != __last)
423 if (*__first == *__next)
424 erase(__next);
426 __first = __next;
427 __next = __first;
439 iterator __next = __first;
440 while (++__next != __last)
442 if (__binary_pred(*__first, *__next))
443 erase(__next);
445 __first = __next;
446 __next = __first;