HomeSort by relevance Sort by last modified time
    Searched defs:_M_next (Results 76 - 100 of 132) sorted by null

1 2 34 5 6

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
forward_list.h 49 _Fwd_list_node_base() : _M_next(0) { }
51 _Fwd_list_node_base* _M_next;
57 while (__end && __end->_M_next)
58 __end = __end->_M_next;
66 _Fwd_list_node_base* __keep = __begin->_M_next;
69 __begin->_M_next = __end->_M_next;
70 __end->_M_next = _M_next;
73 __begin->_M_next = 0
    [all...]
stl_list.h 79 _List_node_base* _M_next;
174 _M_node = _M_node->_M_next;
182 _M_node = _M_node->_M_next;
254 _M_node = _M_node->_M_next;
262 _M_node = _M_node->_M_next;
400 this->_M_impl._M_node._M_next = &this->_M_impl._M_node;
751 { return iterator(this->_M_impl._M_node._M_next); }
760 { return const_iterator(this->_M_impl._M_node._M_next); }
824 { return const_iterator(this->_M_impl._M_node._M_next); }
861 { return this->_M_impl._M_node._M_next == &this->_M_impl._M_node;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/
mt_allocator.h 131 _Block_address* _M_next;
200 _Block_record* _M_next;
276 _Thread_record* _M_next;
285 _Block_record* _M_next;
708 __bin._M_first[__thread_id] = __block->_M_next;
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/backward/
hashtable.h 85 _Hashtable_node* _M_next;
425 for (_Node* __n = _M_buckets[__bucket]; __n; __n = __n->_M_next)
510 __first = __first->_M_next)
522 __first = __first->_M_next)
534 __cur = __cur->_M_next)
601 __n->_M_next = 0;
638 _M_cur = _M_cur->_M_next;
666 _M_cur = _M_cur->_M_next;
703 __cur1 = __cur1->_M_next, __cur2 = __cur2->_M_next)
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
forward_list.h 61 _Pointer _M_next;
63 _Fwd_list_node_base() : _M_next(0) { }
67 { std::swap(__x._M_next, __y._M_next); }
137 _M_node = _M_node->_M_next;
145 _M_node = _M_node->_M_next;
158 _M_next() const
161 return _Fwd_list_iterator(_M_node->_M_next);
208 _M_node = _M_node->_M_next;
216 _M_node = _M_node->_M_next;
    [all...]
stl_list.h 73 _List_node_base* _M_next;
143 _M_node = _M_node->_M_next;
151 _M_node = _M_node->_M_next;
223 _M_node = _M_node->_M_next;
231 _M_node = _M_node->_M_next;
368 this->_M_impl._M_node._M_next = &this->_M_impl._M_node;
690 { return iterator(this->_M_impl._M_node._M_next); }
699 { return const_iterator(this->_M_impl._M_node._M_next); }
763 { return const_iterator(this->_M_impl._M_node._M_next); }
800 { return this->_M_impl._M_node._M_next == &this->_M_impl._M_node;
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/
mt_allocator.h 129 _Block_address* _M_next;
198 _Block_record* _M_next;
274 _Thread_record* _M_next;
283 _Block_record* _M_next;
706 __bin._M_first[__thread_id] = __block->_M_next;
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_list.h 58 _List_node_base* _M_next;
91 void _M_incr() { _M_node = _M_node->_M_next; }
199 _M_node._M_data._M_prev->_M_next = _M_node._M_data._M_next->_M_prev = &_M_node._M_data;
208 bool empty() const { return _M_node._M_data._M_next == &_M_node._M_data; }
211 _M_node._M_data._M_next = &_M_node._M_data;
212 _M_node._M_data._M_prev = _M_node._M_data._M_next;
367 iterator begin() { return iterator(this->_M_node._M_data._M_next); }
368 const_iterator begin() const { return const_iterator(this->_M_node._M_data._M_next); }
393 __x._M_node._M_data._M_next = this->_M_node._M_data._M_next
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/backward/
hashtable.h 85 _Hashtable_node* _M_next;
425 for (_Node* __n = _M_buckets[__bucket]; __n; __n = __n->_M_next)
510 __first = __first->_M_next)
522 __first = __first->_M_next)
534 __cur = __cur->_M_next)
601 __n->_M_next = 0;
638 _M_cur = _M_cur->_M_next;
666 _M_cur = _M_cur->_M_next;
703 __cur1 = __cur1->_M_next, __cur2 = __cur2->_M_next)
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
forward_list.h 61 _Pointer _M_next;
63 _Fwd_list_node_base() : _M_next(0) { }
67 { std::swap(__x._M_next, __y._M_next); }
137 _M_node = _M_node->_M_next;
145 _M_node = _M_node->_M_next;
158 _M_next() const
161 return _Fwd_list_iterator(_M_node->_M_next);
208 _M_node = _M_node->_M_next;
216 _M_node = _M_node->_M_next;
    [all...]
stl_list.h 73 _List_node_base* _M_next;
143 _M_node = _M_node->_M_next;
151 _M_node = _M_node->_M_next;
223 _M_node = _M_node->_M_next;
231 _M_node = _M_node->_M_next;
368 this->_M_impl._M_node._M_next = &this->_M_impl._M_node;
690 { return iterator(this->_M_impl._M_node._M_next); }
699 { return const_iterator(this->_M_impl._M_node._M_next); }
763 { return const_iterator(this->_M_impl._M_node._M_next); }
800 { return this->_M_impl._M_node._M_next == &this->_M_impl._M_node;
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/
mt_allocator.h 129 _Block_address* _M_next;
198 _Block_record* _M_next;
274 _Thread_record* _M_next;
283 _Block_record* _M_next;
706 __bin._M_first[__thread_id] = __block->_M_next;
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_list.h 58 _List_node_base* _M_next;
91 void _M_incr() { _M_node = _M_node->_M_next; }
199 _M_node._M_data._M_prev->_M_next = _M_node._M_data._M_next->_M_prev = &_M_node._M_data;
208 bool empty() const { return _M_node._M_data._M_next == &_M_node._M_data; }
211 _M_node._M_data._M_next = &_M_node._M_data;
212 _M_node._M_data._M_prev = _M_node._M_data._M_next;
367 iterator begin() { return iterator(this->_M_node._M_data._M_next); }
368 const_iterator begin() const { return const_iterator(this->_M_node._M_data._M_next); }
393 __x._M_node._M_data._M_next = this->_M_node._M_data._M_next
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/backward/
hashtable.h 85 _Hashtable_node* _M_next;
425 for (_Node* __n = _M_buckets[__bucket]; __n; __n = __n->_M_next)
510 __first = __first->_M_next)
522 __first = __first->_M_next)
534 __cur = __cur->_M_next)
601 __n->_M_next = 0;
638 _M_cur = _M_cur->_M_next;
666 _M_cur = _M_cur->_M_next;
703 __cur1 = __cur1->_M_next, __cur2 = __cur2->_M_next)
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/
forward_list.h 61 _Pointer _M_next;
63 _Fwd_list_node_base() : _M_next(0) { }
67 { std::swap(__x._M_next, __y._M_next); }
137 _M_node = _M_node->_M_next;
145 _M_node = _M_node->_M_next;
158 _M_next() const
161 return _Fwd_list_iterator(_M_node->_M_next);
208 _M_node = _M_node->_M_next;
216 _M_node = _M_node->_M_next;
    [all...]
stl_list.h 73 _List_node_base* _M_next;
143 _M_node = _M_node->_M_next;
151 _M_node = _M_node->_M_next;
223 _M_node = _M_node->_M_next;
231 _M_node = _M_node->_M_next;
368 this->_M_impl._M_node._M_next = &this->_M_impl._M_node;
690 { return iterator(this->_M_impl._M_node._M_next); }
699 { return const_iterator(this->_M_impl._M_node._M_next); }
763 { return const_iterator(this->_M_impl._M_node._M_next); }
800 { return this->_M_impl._M_node._M_next == &this->_M_impl._M_node;
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/
mt_allocator.h 129 _Block_address* _M_next;
198 _Block_record* _M_next;
274 _Thread_record* _M_next;
283 _Block_record* _M_next;
706 __bin._M_first[__thread_id] = __block->_M_next;
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_list.h 58 _List_node_base* _M_next;
91 void _M_incr() { _M_node = _M_node->_M_next; }
199 _M_node._M_data._M_prev->_M_next = _M_node._M_data._M_next->_M_prev = &_M_node._M_data;
208 bool empty() const { return _M_node._M_data._M_next == &_M_node._M_data; }
211 _M_node._M_data._M_next = &_M_node._M_data;
212 _M_node._M_data._M_prev = _M_node._M_data._M_next;
367 iterator begin() { return iterator(this->_M_node._M_data._M_next); }
368 const_iterator begin() const { return const_iterator(this->_M_node._M_data._M_next); }
393 __x._M_node._M_data._M_next = this->_M_node._M_data._M_next
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/backward/
hashtable.h 85 _Hashtable_node* _M_next;
425 for (_Node* __n = _M_buckets[__bucket]; __n; __n = __n->_M_next)
510 __first = __first->_M_next)
522 __first = __first->_M_next)
534 __cur = __cur->_M_next)
601 __n->_M_next = 0;
638 _M_cur = _M_cur->_M_next;
666 _M_cur = _M_cur->_M_next;
703 __cur1 = __cur1->_M_next, __cur2 = __cur2->_M_next)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
forward_list.h 61 _Pointer _M_next;
63 _Fwd_list_node_base() : _M_next(0) { }
67 { std::swap(__x._M_next, __y._M_next); }
137 _M_node = _M_node->_M_next;
145 _M_node = _M_node->_M_next;
158 _M_next() const
161 return _Fwd_list_iterator(_M_node->_M_next);
208 _M_node = _M_node->_M_next;
216 _M_node = _M_node->_M_next;
    [all...]
stl_list.h 73 _List_node_base* _M_next;
143 _M_node = _M_node->_M_next;
151 _M_node = _M_node->_M_next;
223 _M_node = _M_node->_M_next;
231 _M_node = _M_node->_M_next;
368 this->_M_impl._M_node._M_next = &this->_M_impl._M_node;
690 { return iterator(this->_M_impl._M_node._M_next); }
699 { return const_iterator(this->_M_impl._M_node._M_next); }
763 { return const_iterator(this->_M_impl._M_node._M_next); }
800 { return this->_M_impl._M_node._M_next == &this->_M_impl._M_node;
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/
mt_allocator.h 129 _Block_address* _M_next;
198 _Block_record* _M_next;
274 _Thread_record* _M_next;
283 _Block_record* _M_next;
706 __bin._M_first[__thread_id] = __block->_M_next;
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/backward/
hashtable.h 87 _Hashtable_node* _M_next;
445 for (_Node* __n = _M_buckets[__bucket]; __n; __n = __n->_M_next)
530 __first = __first->_M_next)
542 __first = __first->_M_next)
554 __cur = __cur->_M_next)
621 __n->_M_next = 0;
658 _M_cur = _M_cur->_M_next;
686 _M_cur = _M_cur->_M_next;
723 __cur1 = __cur1->_M_next, __cur2 = __cur2->_M_next)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
forward_list.h 49 _Fwd_list_node_base() : _M_next(0) { }
51 _Fwd_list_node_base* _M_next;
57 while (__end && __end->_M_next)
58 __end = __end->_M_next;
66 _Fwd_list_node_base* __keep = __begin->_M_next;
69 __begin->_M_next = __end->_M_next;
70 __end->_M_next = _M_next;
73 __begin->_M_next = 0
    [all...]
stl_list.h 78 _List_node_base* _M_next;
154 _M_node = _M_node->_M_next;
162 _M_node = _M_node->_M_next;
234 _M_node = _M_node->_M_next;
242 _M_node = _M_node->_M_next;
380 this->_M_impl._M_node._M_next = &this->_M_impl._M_node;
731 { return iterator(this->_M_impl._M_node._M_next); }
740 { return const_iterator(this->_M_impl._M_node._M_next); }
804 { return const_iterator(this->_M_impl._M_node._M_next); }
841 { return this->_M_impl._M_node._M_next == &this->_M_impl._M_node;
    [all...]

Completed in 587 milliseconds

1 2 34 5 6