/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _move_construct_fwk.h | 35 class __move_source { 37 explicit __move_source (_Tp &_src) : _M_data(_src) in __move_source() function 46 typedef __move_source<_Tp> _Self; 94 __move_source<_Tp>,
|
D | _string_base.h | 144 _String_base(__move_source<_Self> src) 146 : _M_start_of_storage(__move_source<_AllocProxy>(src.get()._M_start_of_storage)) { 150 _M_start_of_storage(__move_source<_AllocProxy>(src.get()._M_start_of_storage)) {
|
D | _abbrevs.h | 55 # define __move_source __m_s macro
|
D | _set.h | 137 set(__move_source<_Self> src) in _STLP_CREATE_ITERATOR_TRAITS() 138 : _M_t(__move_source<_Rep_type>(src.get()._M_t)) {} in _STLP_CREATE_ITERATOR_TRAITS() 313 multiset(__move_source<_Self> src) in _STLP_CREATE_ITERATOR_TRAITS() 314 : _M_t(__move_source<_Rep_type>(src.get()._M_t)) {} in _STLP_CREATE_ITERATOR_TRAITS()
|
D | _map.h | 149 map(__move_source<_Self> src) in _STLP_CREATE_ITERATOR_TRAITS() 150 : _M_t(__move_source<_Rep_type>(src.get()._M_t)) {} in _STLP_CREATE_ITERATOR_TRAITS() 334 multimap(__move_source<_Self> src) in _STLP_CREATE_ITERATOR_TRAITS() 335 : _M_t(__move_source<_Rep_type>(src.get()._M_t)) {} in _STLP_CREATE_ITERATOR_TRAITS()
|
D | _unordered_set.h | 83 unordered_set(__move_source<_Self> src) in _STLP_CREATE_HASH_ITERATOR_TRAITS() 84 : _M_ht(__move_source<_Ht>(src.get()._M_ht)) {} in _STLP_CREATE_HASH_ITERATOR_TRAITS() 233 unordered_multiset(__move_source<_Self> src) in _STLP_CREATE_HASH_ITERATOR_TRAITS() 234 : _M_ht(__move_source<_Ht>(src.get()._M_ht)) {} in _STLP_CREATE_HASH_ITERATOR_TRAITS()
|
D | _stack.h | 78 stack(__move_source<_Self> src) in stack()
|
D | _queue.h | 90 queue(__move_source<_Self> src) in queue() 177 priority_queue(__move_source<_Self> src) in _STLP_RELOPS_OPERATORS()
|
D | _unordered_map.h | 89 unordered_map(__move_source<_Self> src) in _STLP_CREATE_HASH_ITERATOR_TRAITS() 90 : _M_ht(__move_source<_Ht>(src.get()._M_ht)) {} in _STLP_CREATE_HASH_ITERATOR_TRAITS() 257 unordered_multimap(__move_source<_Self> src) in _STLP_CREATE_HASH_ITERATOR_TRAITS() 258 : _M_ht(__move_source<_Ht>(src.get()._M_ht)) {} in _STLP_CREATE_HASH_ITERATOR_TRAITS()
|
D | _tree.h | 255 _Rb_tree_base(__move_source<_Self> src) : 256 _M_header(__move_source<_AllocProxy>(src.get()._M_header)) { 407 _Rb_tree(__move_source<_Self> src) 408 : _Rb_tree_base<_Value, _Alloc>(__move_source<_Base>(src.get())),
|
D | _hash_map.h | 98 hash_map(__move_source<_Self> src) in _STLP_CREATE_HASH_ITERATOR_TRAITS() 99 : _M_ht(__move_source<_Ht>(src.get()._M_ht)) { in _STLP_CREATE_HASH_ITERATOR_TRAITS() 289 hash_multimap(__move_source<_Self> src) in _STLP_CREATE_HASH_ITERATOR_TRAITS() 290 : _M_ht(__move_source<_Ht>(src.get()._M_ht)) { in _STLP_CREATE_HASH_ITERATOR_TRAITS()
|
D | _hash_set.h | 101 hash_set(__move_source<_Self> src) in _STLP_CREATE_HASH_ITERATOR_TRAITS() 102 : _M_ht(__move_source<_Ht>(src.get()._M_ht)) {} in _STLP_CREATE_HASH_ITERATOR_TRAITS() 282 hash_multiset(__move_source<_Self> src) in _STLP_CREATE_HASH_ITERATOR_TRAITS() 283 : _M_ht(__move_source<_Ht>(src.get()._M_ht)) {} in _STLP_CREATE_HASH_ITERATOR_TRAITS()
|
D | _list.h | 192 _List_base(__move_source<_Self> src) : 193 _M_node(__move_source<_AllocProxy>(src.get()._M_node)) { 359 list(__move_source<_Self> src) 360 : _STLP_PRIV _List_base<_Tp, _Alloc>(__move_source<_Base>(src.get())) {}
|
D | _hashtable.h | 342 hashtable(__move_source<_Self> src) 345 _M_elems(__move_source<_ElemsCont>(src.get()._M_elems)), 346 _M_buckets(__move_source<_BucketVector>(src.get()._M_buckets)),
|
D | _vector.h | 78 _Vector_base(__move_source<_Self> src) in _Vector_base() 80 _M_end_of_storage(__move_source<_AllocProxy>(src.get()._M_end_of_storage)) { in _Vector_base() 253 vector(__move_source<_Self> src) in vector() 254 : _STLP_PRIV _Vector_base<_Tp, _Alloc>(__move_source<_Base>(src.get())) in vector()
|
D | _alloc.h | 295 allocator(__move_source<allocator<_Tp> > src) _STLP_NOTHROW {} in allocator() 484 _STLP_alloc_proxy (__move_source<_Self> src) :
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | mvctor_test.h | 67 MovableStruct(std::__move_source<MovableStruct>) in MovableStruct() 69 MovableStruct(__move_source<MovableStruct>) in MovableStruct()
|
/ndk/tests/device/test-stlport/unit/ |
D | mvctor_test.h | 67 MovableStruct(std::__move_source<MovableStruct>) in MovableStruct() 69 MovableStruct(__move_source<MovableStruct>) in MovableStruct()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/pointers/ |
D | _vector.h | 127 explicit vector(__move_source<_Self> src) in vector() 128 : _M_impl(__move_source<_Base>(src.get()._M_impl)) {} in vector()
|
D | _set.h | 196 set(__move_source<_Self> src) 197 : _M_t(__move_source<_Rep_type>(src.get()._M_t)) {} 454 multiset(__move_source<_Self> src) 455 : _M_t(__move_source<_Rep_type>(src.get()._M_t)) {}
|
D | _list.h | 148 list(__move_source<_Self> src) in list() 149 : _M_impl(__move_source<_Base>(src.get()._M_impl)) {} in list()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/ |
D | _tree.h | 131 _Rb_tree(__move_source<_Self> src): in _Rb_tree() 132 _M_non_dbg_impl(__move_source<_Base>(src.get()._M_non_dbg_impl)), in _Rb_tree()
|
D | _hashtable.h | 154 hashtable(__move_source<_Self> src) in hashtable() 155 : _M_non_dbg_impl(__move_source<_Base>(src.get()._M_non_dbg_impl)), in hashtable()
|
D | _deque.h | 148 deque(__move_source<_Self> src) in deque() 149 : _M_non_dbg_impl(__move_source<_Base>(src.get()._M_non_dbg_impl)), in deque()
|
D | _vector.h | 194 vector(__move_source<_Self> src) 195 : _M_non_dbg_impl(__move_source<_Base>(src.get()._M_non_dbg_impl)),
|