/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/ |
list.tcc | 194 iterator __next = __first; 195 ++__next; 206 __first = __next; 221 iterator __next = __first; 222 while (++__next != __last) 224 if (*__first == *__next) 225 _M_erase(__next); 227 __first = __next; 228 __next = __first; 254 iterator __next = __first2 [all...] |
forward_list.tcc | 229 typename _Node_base::_Pointer __next = __curr->_M_next; 230 __pos->_M_next = __next; 418 iterator __next = __first; 419 while (++__next != __last) 421 if (__binary_pred(*__first, *__next)) 424 __first = __next; 425 __next = __first;
|
stl_algo.h | 1297 _ForwardIterator __next = __first; local 1368 _ForwardIterator __next = __first; local 2104 _RandomAccessIterator __next = __last; local 2121 _RandomAccessIterator __next = __last; local 4047 _ForwardIterator __next = __first; local 4125 _ForwardIterator __next = __first; local [all...] |
/external/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...] |
_slist_base.c | 79 _Slist_node_base* __next = __node->_M_next; local 82 __node = __next;
|
_algo.c | 685 _ForwardIter __next = __first; 687 while (++__next != __last) { 688 if (__pred(*__next)) { 689 _STLP_STD::swap(*__first, *__next); 909 _RandomAccessIter __next = __last; local 910 --__next; 911 while (__comp(__val, *__next)) { 912 _STLP_VERBOSE_ASSERT(!__comp(*__next, __val), _StlMsg_INVALID_STRICT_WEAK_PREDICATE) 913 *__last = *__next; 914 __last = __next; [all...] |
_num_get.c | 151 _Integer __next = __STATIC_CAST(_Integer, __base * __result - __n); local 153 __ovflow = __ovflow || __next >= __result; 154 __result = __next; 211 _Integer __next = __STATIC_CAST(_Integer, __base * __result + __n); local 213 __ovflow = __ovflow || __next <= __result; 214 __result = __next;
|
_algo.h | 87 _ForwardIter __next = __first; 88 while(++__next != __last) { 89 if (__binary_pred(*__first, *__next)) 91 __first = __next; 271 _ForwardIter __next = __first; local 272 return remove_copy(++__next, __last, __first, __val); 284 _ForwardIter __next = __first; local 285 return remove_copy_if(++__next, __last, __first, __pred);
|
/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...] |
_slist_base.c | 79 _Slist_node_base* __next = __node->_M_next; local 82 __node = __next;
|
_algo.c | 685 _ForwardIter __next = __first; 687 while (++__next != __last) { 688 if (__pred(*__next)) { 689 _STLP_STD::swap(*__first, *__next); 909 _RandomAccessIter __next = __last; local 910 --__next; 911 while (__comp(__val, *__next)) { 912 _STLP_VERBOSE_ASSERT(!__comp(*__next, __val), _StlMsg_INVALID_STRICT_WEAK_PREDICATE) 913 *__last = *__next; 914 __last = __next; [all...] |
_num_get.c | 151 _Integer __next = __STATIC_CAST(_Integer, __base * __result - __n); local 153 __ovflow = __ovflow || __next >= __result; 154 __result = __next; 211 _Integer __next = __STATIC_CAST(_Integer, __base * __result + __n); local 213 __ovflow = __ovflow || __next <= __result; 214 __result = __next;
|
_algo.h | 87 _ForwardIter __next = __first; 88 while(++__next != __last) { 89 if (__binary_pred(*__first, *__next)) 91 __first = __next; 271 _ForwardIter __next = __first; local 272 return remove_copy(++__next, __last, __first, __val); 284 _ForwardIter __next = __first; local 285 return remove_copy_if(++__next, __last, __first, __pred);
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/backward/ |
hashtable.h | 873 _Node* __next = __cur->_M_next; local 874 while (__next) 876 if (_M_equals(_M_get_key(__next->_M_val), __key)) 878 if (&_M_get_key(__next->_M_val) != &__key) 880 __cur->_M_next = __next->_M_next; 881 _M_delete_node(__next); 882 __next = __cur->_M_next; 889 __cur = __next; 890 __next = __cur->_M_next; 895 __cur = __next; 936 _Node* __next = __cur->_M_next; local 1035 _Node* __next = __tmp[__bucket]->_M_next; local 1056 _Node* __next; local 1079 _Node* __next = __cur->_M_next; local 1100 _Node* __next = __cur->_M_next; local [all...] |
/external/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...] |
_debug.c | 542 __owned_link* __prev, *__next; local 544 for (__prev = &__l->_M_node; (__next = __prev->_M_next) != __c_node; 545 __prev = __next) { 546 _STLP_ASSERT(__next && __next->_Owner() == __l)
|
/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...] |
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/debug/ |
functions.h | 202 _ForwardIterator __next = __first; 203 for (++__next; __next != __last; __first = __next, ++__next) 204 if (*__next < *__first) 228 _ForwardIterator __next = __first; 229 for (++__next; __next != __last; __first = __next, ++__next [all...] |
list | 495 iterator __next = __first; 496 while (++__next != __last) 498 if (*__first == *__next) 499 erase(__next); 501 __first = __next; 502 __next = __first; 514 iterator __next = __first; 515 while (++__next != __last) 517 if (__binary_pred(*__first, *__next)) 518 erase(__next); [all...] |
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/ |
algorithm | 488 _ForwardIterator __next = __first; 489 for (++__next; __next != __last; __first = __next, ++__next) 490 if (*__next < *__first) 515 _ForwardIterator __next = __first; 516 for (++__next; __next != __last; __first = __next, ++__next [all...] |
slist | 132 _Slist_node_base* __next = __node->_M_next; 135 __node = __next; 258 _Slist_node<_Tp>* __next = (_Slist_node<_Tp>*) (__pos->_M_next); 259 _Slist_node_base* __next_next = __next->_M_next; 261 get_allocator().destroy(&__next->_M_data); 262 _M_put_node(__next);
|
/external/oprofile/libpopt/ |
system.h | 32 #ifdef __NeXT
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/ |
pthreadtypes.h | 64 struct __pthread_internal_list *__next; member in struct:__pthread_internal_list 69 struct __pthread_internal_slist *__next; member in struct:__pthread_internal_slist
|