HomeSort by relevance Sort by last modified time
    Searched defs:__next (Results 101 - 125 of 141) sorted by null

1 2 3 45 6

  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_slist.h 174 _Node* __next = __STATIC_CAST(_Node*, __pos->_M_next); local
175 _Slist_node_base* __next_next = __next->_M_next;
177 _STLP_STD::_Destroy(&__next->_M_data);
178 _M_head.deallocate(__next,1);
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/backward/
hashtable.h 894 _Node* __next = __cur->_M_next; local
895 while (__next)
897 if (_M_equals(_M_get_key(__next->_M_val), __key))
899 if (&_M_get_key(__next->_M_val) != &__key)
901 __cur->_M_next = __next->_M_next;
902 _M_delete_node(__next);
903 __next = __cur->_M_next;
910 __cur = __next;
911 __next = __cur->_M_next;
916 __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...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
hashtable.h 1066 _Node* __next = __cur->_M_next; local
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/tr1/
hashtable.h 957 _Node* __next = __cur->_M_next; local
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/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...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
hashtable.h 1640 _Node* __next = __p->_M_next(); local
1685 _Node* __next = __p->_M_next(); local
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/tr1/
hashtable.h 957 _Node* __next = __cur->_M_next; local
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/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/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
hashtable.h 1707 __node_type* __next = __p->_M_next(); local
1752 __node_type* __next = __p->_M_next(); local
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/tr1/
hashtable.h 957 _Node* __next = __cur->_M_next; local
    [all...]
  /prebuilts/ndk/9/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...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
hashtable.h 2007 __node_type* __next = __p->_M_next(); local
2053 __node_type* __next = __p->_M_next(); local
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/tr1/
hashtable.h 957 _Node* __next = __cur->_M_next; local
    [all...]
  /external/stlport/stlport/stl/
_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...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_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...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
stl_algo.h 1251 _ForwardIterator __next = __first; local
1322 _ForwardIterator __next = __first; local
2096 _RandomAccessIterator __next = __last; local
2115 _RandomAccessIterator __next = __last; local
4086 _ForwardIterator __next = __first; local
4164 _ForwardIterator __next = __first; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
stl_algo.h 1251 _ForwardIterator __next = __first; local
1322 _ForwardIterator __next = __first; local
2096 _RandomAccessIterator __next = __last; local
2115 _RandomAccessIterator __next = __last; local
4086 _ForwardIterator __next = __first; local
4164 _ForwardIterator __next = __first; local
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_algo.h 1296 _ForwardIterator __next = __first; local
1367 _ForwardIterator __next = __first; local
2103 _RandomAccessIterator __next = __last; local
2120 _RandomAccessIterator __next = __last; local
4046 _ForwardIterator __next = __first; local
4124 _ForwardIterator __next = __first; local
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_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...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_algo.h 1296 _ForwardIterator __next = __first; local
1367 _ForwardIterator __next = __first; local
2103 _RandomAccessIterator __next = __last; local
2120 _RandomAccessIterator __next = __last; local
4046 _ForwardIterator __next = __first; local
4124 _ForwardIterator __next = __first; local
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_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...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_algo.h 1296 _ForwardIterator __next = __first; local
1367 _ForwardIterator __next = __first; local
2103 _RandomAccessIterator __next = __last; local
2120 _RandomAccessIterator __next = __last; local
4046 _ForwardIterator __next = __first; local
4124 _ForwardIterator __next = __first; local
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_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...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
stl_algo.h 1296 _ForwardIterator __next = __first; local
1367 _ForwardIterator __next = __first; local
2103 _RandomAccessIterator __next = __last; local
2120 _RandomAccessIterator __next = __last; local
4046 _ForwardIterator __next = __first; local
4124 _ForwardIterator __next = __first; local
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_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...]

Completed in 1088 milliseconds

1 2 3 45 6