Searched refs:__move_source (Results 1 - 25 of 37) sorted by relevance

12

/external/stlport/stlport/stl/
H A D_move_construct_fwk.h35 class __move_source { class
37 explicit __move_source (_Tp &_src) : _M_data(_src) function in class:__move_source
46 typedef __move_source<_Tp> _Self;
94 __move_source<_Tp>,
H A D_abbrevs.h55 # define __move_source __m_s macro
H A D_string_base.h144 _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)) {
H A D_stack.h78 stack(__move_source<_Self> src)
H A D_map.h149 map(__move_source<_Self> src)
150 : _M_t(__move_source<_Rep_type>(src.get()._M_t)) {}
334 multimap(__move_source<_Self> src)
335 : _M_t(__move_source<_Rep_type>(src.get()._M_t)) {}
H A D_set.h137 set(__move_source<_Self> src)
138 : _M_t(__move_source<_Rep_type>(src.get()._M_t)) {}
313 multiset(__move_source<_Self> src)
314 : _M_t(__move_source<_Rep_type>(src.get()._M_t)) {}
H A D_unordered_map.h89 unordered_map(__move_source<_Self> src)
90 : _M_ht(__move_source<_Ht>(src.get()._M_ht)) {}
257 unordered_multimap(__move_source<_Self> src)
258 : _M_ht(__move_source<_Ht>(src.get()._M_ht)) {}
H A D_unordered_set.h83 unordered_set(__move_source<_Self> src)
84 : _M_ht(__move_source<_Ht>(src.get()._M_ht)) {}
233 unordered_multiset(__move_source<_Self> src)
234 : _M_ht(__move_source<_Ht>(src.get()._M_ht)) {}
H A D_queue.h90 queue(__move_source<_Self> src)
177 priority_queue(__move_source<_Self> src)
H A D_hashtable.h342 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)),
H A D_alloc.h295 allocator(__move_source<allocator<_Tp> > _STLP_UNUSED(src)) _STLP_NOTHROW {}
484 _STLP_alloc_proxy (__move_source<_Self> src) :
H A D_hash_map.h98 hash_map(__move_source<_Self> src)
99 : _M_ht(__move_source<_Ht>(src.get()._M_ht)) {
289 hash_multimap(__move_source<_Self> src)
290 : _M_ht(__move_source<_Ht>(src.get()._M_ht)) {
H A D_hash_set.h101 hash_set(__move_source<_Self> src)
102 : _M_ht(__move_source<_Ht>(src.get()._M_ht)) {}
282 hash_multiset(__move_source<_Self> src)
283 : _M_ht(__move_source<_Ht>(src.get()._M_ht)) {}
H A D_list.h192 _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())) {}
H A D_pair.h72 pair(__move_source<pair<_T1, _T2> > src) : first(_STLP_PRIV _AsMoveSource(src.get().first)),
H A D_tree.h255 _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())),
H A D_vector.h78 _Vector_base(__move_source<_Self> src)
80 _M_end_of_storage(__move_source<_AllocProxy>(src.get()._M_end_of_storage)) {
253 vector(__move_source<_Self> src)
254 : _STLP_PRIV _Vector_base<_Tp, _Alloc>(__move_source<_Base>(src.get()))
/external/stlport/test/unit/
H A Dmvctor_test.h67 MovableStruct(std::__move_source<MovableStruct>)
69 MovableStruct(__move_source<MovableStruct>)
/external/stlport/stlport/stl/pointers/
H A D_vector.h127 explicit vector(__move_source<_Self> src)
128 : _M_impl(__move_source<_Base>(src.get()._M_impl)) {}
H A D_list.h148 list(__move_source<_Self> src)
149 : _M_impl(__move_source<_Base>(src.get()._M_impl)) {}
H A D_set.h196 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)) {}
/external/stlport/stlport/stl/debug/
H A D_deque.h148 deque(__move_source<_Self> src)
149 : _M_non_dbg_impl(__move_source<_Base>(src.get()._M_non_dbg_impl)),
H A D_hashtable.h154 hashtable(__move_source<_Self> src)
155 : _M_non_dbg_impl(__move_source<_Base>(src.get()._M_non_dbg_impl)),
H A D_tree.h131 _Rb_tree(__move_source<_Self> src):
132 _M_non_dbg_impl(__move_source<_Base>(src.get()._M_non_dbg_impl)),
H A D_vector.h194 vector(__move_source<_Self> src)
195 : _M_non_dbg_impl(__move_source<_Base>(src.get()._M_non_dbg_impl)),

Completed in 222 milliseconds

12