HomeSort by relevance Sort by last modified time
    Searched full:__next (Results 1 - 25 of 202) sorted by null

1 2 3 4 5 6 7 8 9

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
list.tcc 246 iterator __next = __first;
247 ++__next;
258 __first = __next;
273 iterator __next = __first;
274 while (++__next != __last)
276 if (*__first == *__next)
277 _M_erase(__next);
279 __first = __next;
280 __next = __first;
306 iterator __next = __first2
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
list.tcc 246 iterator __next = __first;
247 ++__next;
258 __first = __next;
273 iterator __next = __first;
274 while (++__next != __last)
276 if (*__first == *__next)
277 _M_erase(__next);
279 __first = __next;
280 __next = __first;
306 iterator __next = __first2
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
list.tcc 246 iterator __next = __first;
247 ++__next;
258 __first = __next;
273 iterator __next = __first;
274 while (++__next != __last)
276 if (*__first == *__next)
277 _M_erase(__next);
279 __first = __next;
280 __next = __first;
306 iterator __next = __first2
    [all...]
  /hardware/intel/common/libwsbm/src/
wsbm_util.h 63 #define WSBMLISTFOREACHSAFE(__item, __next, __list) \
64 for((__item) = (__list)->next, (__next) = (__item)->next; \
66 (__item) = (__next), (__next) = (__item)->next)
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
list.tcc 288 iterator __next = __first;
289 ++__next;
300 __first = __next;
315 iterator __next = __first;
316 while (++__next != __last)
318 if (*__first == *__next)
319 _M_erase(__next);
321 __first = __next;
322 __next = __first;
348 iterator __next = __first2
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_list.c 144 _Literator __next = __first; local
145 ++__next;
147 __first = __next;
157 _Literator __next = __first;
158 while (++__next != __last) {
159 if (__binary_pred(*__first, *__next))
160 __that.erase(__next);
162 __first = __next;
163 __next = __first;
179 _Literator __next = __first2 local
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_list.c 144 _Literator __next = __first; local
145 ++__next;
147 __first = __next;
157 _Literator __next = __first;
158 while (++__next != __last) {
159 if (__binary_pred(*__first, *__next))
160 __that.erase(__next);
162 __first = __next;
163 __next = __first;
179 _Literator __next = __first2 local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/backward/
hashtable.h 892 _Node* __next = __cur->_M_next; local
893 while (__next)
895 if (_M_equals(_M_get_key(__next->_M_val), __key))
897 if (&_M_get_key(__next->_M_val) != &__key)
899 __cur->_M_next = __next->_M_next;
900 _M_delete_node(__next);
901 __next = __cur->_M_next;
908 __cur = __next;
909 __next = __cur->_M_next;
914 __cur = __next;
956 _Node* __next = __cur->_M_next; local
1055 _Node* __next = __tmp[__bucket]->_M_next; local
1076 _Node* __next; local
1099 _Node* __next = __cur->_M_next; local
1120 _Node* __next = __cur->_M_next; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/backward/
hashtable.h 892 _Node* __next = __cur->_M_next; local
893 while (__next)
895 if (_M_equals(_M_get_key(__next->_M_val), __key))
897 if (&_M_get_key(__next->_M_val) != &__key)
899 __cur->_M_next = __next->_M_next;
900 _M_delete_node(__next);
901 __next = __cur->_M_next;
908 __cur = __next;
909 __next = __cur->_M_next;
914 __cur = __next;
956 _Node* __next = __cur->_M_next; local
1055 _Node* __next = __tmp[__bucket]->_M_next; local
1076 _Node* __next; local
1099 _Node* __next = __cur->_M_next; local
1120 _Node* __next = __cur->_M_next; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/backward/
hashtable.h 892 _Node* __next = __cur->_M_next; local
893 while (__next)
895 if (_M_equals(_M_get_key(__next->_M_val), __key))
897 if (&_M_get_key(__next->_M_val) != &__key)
899 __cur->_M_next = __next->_M_next;
900 _M_delete_node(__next);
901 __next = __cur->_M_next;
908 __cur = __next;
909 __next = __cur->_M_next;
914 __cur = __next;
956 _Node* __next = __cur->_M_next; local
1055 _Node* __next = __tmp[__bucket]->_M_next; local
1076 _Node* __next; local
1099 _Node* __next = __cur->_M_next; local
1120 _Node* __next = __cur->_M_next; local
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/backward/
hashtable.h 893 _Node* __next = __cur->_M_next; local
894 while (__next)
896 if (_M_equals(_M_get_key(__next->_M_val), __key))
898 if (&_M_get_key(__next->_M_val) != &__key)
900 __cur->_M_next = __next->_M_next;
901 _M_delete_node(__next);
902 __next = __cur->_M_next;
909 __cur = __next;
910 __next = __cur->_M_next;
915 __cur = __next;
957 _Node* __next = __cur->_M_next; local
1056 _Node* __next = __tmp[__bucket]->_M_next; local
1077 _Node* __next; local
1100 _Node* __next = __cur->_M_next; local
1121 _Node* __next = __cur->_M_next; local
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/debug/
_list.h 342 _Base_iterator __next = __first; local
343 ++__next;
348 __first = __next;
418 _Base_iterator __next = __first;
419 while (++__next != __last) {
420 if (*__first == *__next) {
421 _Invalidate_iterator(iterator(&_M_iter_list, __next));
422 _M_non_dbg_impl.erase(__next);
425 __first = __next;
426 __next = __first
438 _Base_iterator __next = __first; local
    [all...]
_slist.h 505 _Base_iterator __next = __first; local
506 ++__next;
511 __first = __next;
517 _Base_iterator __next = __first;
518 while (++__next != __last) {
519 if (*__first == *__next) {
520 _Invalidate_iterator(iterator(&_M_iter_list, __next));
521 _M_non_dbg_impl.erase(__next);
524 __first = __next;
525 __next = __first
554 _Base_iterator __next = __first; local
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/debug/
_list.h 342 _Base_iterator __next = __first; local
343 ++__next;
348 __first = __next;
418 _Base_iterator __next = __first;
419 while (++__next != __last) {
420 if (*__first == *__next) {
421 _Invalidate_iterator(iterator(&_M_iter_list, __next));
422 _M_non_dbg_impl.erase(__next);
425 __first = __next;
426 __next = __first
438 _Base_iterator __next = __first; local
    [all...]
_slist.h 505 _Base_iterator __next = __first; local
506 ++__next;
511 __first = __next;
517 _Base_iterator __next = __first;
518 while (++__next != __last) {
519 if (*__first == *__next) {
520 _Invalidate_iterator(iterator(&_M_iter_list, __next));
521 _M_non_dbg_impl.erase(__next);
524 __first = __next;
525 __next = __first
554 _Base_iterator __next = __first; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/debug/
list 610 _Base_iterator __next = __first; ++__next;
611 while (__next != __last)
613 if (*__first == *__next)
614 __next = _M_erase(__next);
616 __first = __next++;
628 _Base_iterator __next = __first; ++__next;
629 while (__next != __last
    [all...]
functions.h 206 _ForwardIterator __next = __first;
207 for (++__next; __next != __last; __first = __next, ++__next)
208 if (*__next < *__first)
241 _ForwardIterator __next = __first;
242 for (++__next; __next != __last; __first = __next, ++__next
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/debug/
list 610 _Base_iterator __next = __first; ++__next;
611 while (__next != __last)
613 if (*__first == *__next)
614 __next = _M_erase(__next);
616 __first = __next++;
628 _Base_iterator __next = __first; ++__next;
629 while (__next != __last
    [all...]
functions.h 206 _ForwardIterator __next = __first;
207 for (++__next; __next != __last; __first = __next, ++__next)
208 if (*__next < *__first)
241 _ForwardIterator __next = __first;
242 for (++__next; __next != __last; __first = __next, ++__next
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/debug/
list 610 _Base_iterator __next = __first; ++__next;
611 while (__next != __last)
613 if (*__first == *__next)
614 __next = _M_erase(__next);
616 __first = __next++;
628 _Base_iterator __next = __first; ++__next;
629 while (__next != __last
    [all...]
functions.h 206 _ForwardIterator __next = __first;
207 for (++__next; __next != __last; __first = __next, ++__next)
208 if (*__next < *__first)
241 _ForwardIterator __next = __first;
242 for (++__next; __next != __last; __first = __next, ++__next
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/
algorithm 497 _ForwardIterator __next = __first;
498 for (++__next; __next != __last; __first = __next, ++__next)
499 if (*__next < *__first)
524 _ForwardIterator __next = __first;
525 for (++__next; __next != __last; __first = __next, ++__next
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/profile/
list 502 iterator __next = __first;
503 while (++__next != __last)
506 if (*__first == *__next)
507 erase(__next);
509 __first = __next;
510 __next = __first;
522 iterator __next = __first;
523 while (++__next != __last)
526 if (__binary_pred(*__first, *__next))
527 erase(__next);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
algorithm 497 _ForwardIterator __next = __first;
498 for (++__next; __next != __last; __first = __next, ++__next)
499 if (*__next < *__first)
524 _ForwardIterator __next = __first;
525 for (++__next; __next != __last; __first = __next, ++__next
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/profile/
list 502 iterator __next = __first;
503 while (++__next != __last)
506 if (*__first == *__next)
507 erase(__next);
509 __first = __next;
510 __next = __first;
522 iterator __next = __first;
523 while (++__next != __last)
526 if (__binary_pred(*__first, *__next))
527 erase(__next);
    [all...]

Completed in 562 milliseconds

1 2 3 4 5 6 7 8 9