Searched refs:swap (Results 51 - 75 of 209) sorted by relevance

123456789

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multimap/multimap.special/
H A Dmember_swap.pass.cpp14 // void swap(multimap& m);
37 m1.swap(m2);
60 m1.swap(m2);
79 m1.swap(m2);
106 m1.swap(m2);
125 m1.swap(m2);
148 m1.swap(m2);
167 m1.swap(m2);
194 m1.swap(m2);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multiset/multiset.special/
H A Dmember_swap.pass.cpp14 // void swap(multiset& m);
37 m1.swap(m2);
60 m1.swap(m2);
79 m1.swap(m2);
106 m1.swap(m2);
126 m1.swap(m2);
149 m1.swap(m2);
168 m1.swap(m2);
195 m1.swap(m2);
H A Dnon_member_swap.pass.cpp14 // void swap(multiset& m);
36 swap(m1, m2);
59 swap(m1, m2);
78 swap(m1, m2);
105 swap(m1, m2);
135 swap(m1, m2);
169 swap(m1, m2);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/set/set.special/
H A Dmember_swap.pass.cpp14 // void swap(set& m);
37 m1.swap(m2);
60 m1.swap(m2);
79 m1.swap(m2);
106 m1.swap(m2);
126 m1.swap(m2);
149 m1.swap(m2);
168 m1.swap(m2);
195 m1.swap(m2);
H A Dnon_member_swap.pass.cpp14 // void swap(set& m);
36 swap(m1, m2);
59 swap(m1, m2);
78 swap(m1, m2);
105 swap(m1, m2);
135 swap(m1, m2);
169 swap(m1, m2);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.capacity/
H A Dswap.pass.cpp12 // void swap(vector& x);
27 v1.swap(v2);
41 v1.swap(v2);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/string.streams/istringstream/istringstream.assign/
H A Dmember_swap.pass.cpp15 // void swap(basic_istringstream& rhs);
25 ss.swap(ss0);
42 ss.swap(ss0);
H A Dnonmember_swap.pass.cpp17 // swap(basic_istringstream<charT, traits, Allocator>& x,
28 swap(ss, ss0);
45 swap(ss, ss0);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/string.streams/ostringstream/ostringstream.assign/
H A Dmember_swap.pass.cpp15 // void swap(basic_ostringstream& rhs);
25 ss.swap(ss0);
38 ss.swap(ss0);
H A Dnonmember_swap.pass.cpp15 // void swap(basic_ostringstream& rhs);
25 swap(ss, ss0);
38 swap(ss, ss0);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/string.streams/stringstream.cons/stringstream.assign/
H A Dmember_swap.pass.cpp15 // void swap(basic_stringstream& rhs);
25 ss.swap(ss0);
42 ss.swap(ss0);
H A Dnonmember_swap.pass.cpp17 // swap(basic_stringstream<charT, traits, Allocator>& x,
28 swap(ss, ss0);
45 swap(ss, ss0);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/utility.swap/
H A Dswap_array.pass.cpp15 // swap(T (&a)[N], T (&b)[N]);
28 std::swap(i, j);
48 std::swap(i, j);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.results/re.results.swap/
H A Dmember_swap.pass.cpp14 // void swap(match_results& that);
30 m1.swap(m2);
H A Dnon_member_swap.pass.cpp15 // void swap(match_results<BidirectionalIterator, Allocator>& m1,
32 swap(m1, m2);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.mod/
H A Dmember_swap.pass.cpp14 // void swap(unique_lock& u);
31 lk1.swap(lk2);
H A Dnonmember_swap.pass.cpp15 // void swap(unique_lock<Mutex>& x, unique_lock<Mutex>& y);
32 swap(lk1, lk2);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.special/
H A Dswap.pass.cpp13 // void swap(list<T,Alloc>& x, list<T,Alloc>& y);
27 swap(c1, c2);
36 swap(c1, c2);
46 swap(c1, c2);
56 swap(c1, c2);
70 swap(c1, c2);
83 swap(c1, c2);
95 swap(c1, c2);
104 swap(c1, c2);
114 swap(c
[all...]
/ndk/tests/device/test-gnustl-full/unit/
H A Dstack_allocator.h52 //one. This is the case for the std::swap function.
148 void swap(StackAllocator &other) { function in struct:StackAllocator
149 __STD swap(m_state, other.m_state);
155 void _M_swap_workaround(StackAllocator& __x) { swap(__x); }
185 inline void swap(StackAllocator<_Tp>& __a, StackAllocator<_Tp>& __b) function in namespace:std
186 { __a.swap(__b); }
189 //with new StackAllocator instanciations associated swap overload should also be
191 inline void swap(StackAllocator<int>& __a, StackAllocator<int>& __b) function in namespace:std
192 { __a.swap(__b); }
193 inline void swap(StackAllocato function in namespace:std
195 inline void swap(StackAllocator<pair<const int, int> >& __a, function in namespace:std
[all...]
/ndk/tests/device/test-stlport/unit/
H A Dstack_allocator.h52 //one. This is the case for the std::swap function.
148 void swap(StackAllocator &other) { function in struct:StackAllocator
149 __STD swap(m_state, other.m_state);
155 void _M_swap_workaround(StackAllocator& __x) { swap(__x); }
185 inline void swap(StackAllocator<_Tp>& __a, StackAllocator<_Tp>& __b) function in namespace:std
186 { __a.swap(__b); }
189 //with new StackAllocator instanciations associated swap overload should also be
191 inline void swap(StackAllocator<int>& __a, StackAllocator<int>& __b) function in namespace:std
192 { __a.swap(__b); }
193 inline void swap(StackAllocato function in namespace:std
195 inline void swap(StackAllocator<pair<const int, int> >& __a, function in namespace:std
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
H A Dios.cpp420 ios_base::swap(ios_base& rhs) _NOEXCEPT
422 _VSTD::swap(__fmtflags_, rhs.__fmtflags_);
423 _VSTD::swap(__precision_, rhs.__precision_);
424 _VSTD::swap(__width_, rhs.__width_);
425 _VSTD::swap(__rdstate_, rhs.__rdstate_);
426 _VSTD::swap(__exceptions_, rhs.__exceptions_);
429 _VSTD::swap(lhs_loc, rhs_loc);
430 _VSTD::swap(__fn_, rhs.__fn_);
431 _VSTD::swap(__index_, rhs.__index_);
432 _VSTD::swap(__event_size
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/queue/queue.defn/
H A Dswap.pass.cpp12 // void swap(queue& q);
33 q1.swap(q2);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/queue/queue.special/
H A Dswap.pass.cpp13 // void swap(queue<T, Container>& x, queue<T, Container>& y);
34 swap(q1, q2);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/stack.defn/
H A Dswap.pass.cpp12 // void swap(stack& q);
33 q1.swap(q2);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/stack.special/
H A Dswap.pass.cpp13 // void swap(stack<T, Container>& x, stack<T, Container>& y);
34 swap(q1, q2);

Completed in 2832 milliseconds

123456789