Searched refs:swap (Results 1 - 25 of 1727) sorted by relevance

1234567891011>>

/external/stlport/stlport/stl/
H A D_relops_hash_cont.h9 swap(_STLP_TEMPLATE_CONTAINER& __hm1, _STLP_TEMPLATE_CONTAINER& __hm2) { function
10 __hm1.swap(__hm2);
/external/libcxx/test/containers/sequences/array/array.swap/
H A DAndroid.mk17 test_makefile := external/libcxx/test/containers/sequences/array/array.swap/Android.mk
19 test_name := containers/sequences/array/array.swap/swap
20 test_src := swap.pass.cpp
/external/libcxx/test/re/re.regex/re.regex.swap/
H A DAndroid.mk17 test_makefile := external/libcxx/test/re/re.regex/re.regex.swap/Android.mk
19 test_name := re/re.regex/re.regex.swap/swap
20 test_src := swap.pass.cpp
/external/libcxx/test/utilities/optional/optional.object/optional.object.swap/
H A DAndroid.mk17 test_makefile := external/libcxx/test/utilities/optional/optional.object/optional.object.swap/Android.mk
19 test_name := utilities/optional/optional.object/optional.object.swap/swap
20 test_src := swap.pass.cpp
H A Dswap.pass.cpp12 // void swap(optional&)
14 // noexcept(swap(declval<T&>(), declval<T&>())));
49 friend void swap(Y& x, Y& y) {std::swap(x.i_, y.i_);} function in class:Y
62 friend void swap(Z& x, Z& y) {throw 6;} function in class:Z
74 static_assert(noexcept(opt1.swap(opt2)) == true, "");
77 opt1.swap(opt2);
84 static_assert(noexcept(opt1.swap(opt2)) == true, "");
88 opt1.swap(opt2);
96 static_assert(noexcept(opt1.swap(opt
[all...]
/external/libcxx/test/utilities/utility/utility.swap/
H A DAndroid.mk17 test_makefile := external/libcxx/test/utilities/utility/utility.swap/Android.mk
19 test_name := utilities/utility/utility.swap/swap
20 test_src := swap.pass.cpp
23 test_name := utilities/utility/utility.swap/swap_array
/external/chromium_org/remoting/host/win/
H A Dwindow_station_and_desktop.cc22 std::swap(desktop_, desktop);
28 std::swap(window_station_, window_station);
34 std::swap(desktop_, other.desktop_);
35 std::swap(window_station_, other.window_station_);
/external/eigen/test/eigen2/
H A Deigen2_swap.cpp25 template<typename MatrixType> void swap(const MatrixType& m) function
44 m1.swap(m2);
51 m1.swap(m3);
58 m1.swap(m2.block(0,0,rows,cols));
65 m1.transpose().swap(m3.transpose());
72 VERIFY_RAISES_ASSERT(m1.swap(m1.row(0)));
74 VERIFY_RAISES_ASSERT(m1.row(0).swap(m1));
79 CALL_SUBTEST_1( swap(Matrix3f()) ); // fixed size, no vectorization
80 CALL_SUBTEST_1( swap(Matrix4d()) ); // fixed size, possible vectorization
81 CALL_SUBTEST_1( swap(MatrixX
[all...]
/external/chromium_org/components/history/core/browser/
H A Durl_row.cc42 std::swap(id_, other->id_);
44 title_.swap(other->title_);
45 std::swap(visit_count_, other->visit_count_);
46 std::swap(typed_count_, other->typed_count_);
47 std::swap(last_visit_, other->last_visit_);
48 std::swap(hidden_, other->hidden_);
85 std::swap(visit_time_, other->visit_time_);
87 title_match_positions_.swap(other->title_match_positions_);
88 std::swap(blocked_visit_, other->blocked_visit_);
/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_value.h23 void swap(IndexedDBValue& value) { function in struct:content::IndexedDBValue
24 bits.swap(value.bits);
25 blob_info.swap(value.blob_info);
/external/chromium_org/net/http/
H A Dhttp_network_session_peer.cc25 session_->normal_socket_pool_manager_.swap(socket_pool_manager);
34 session_->http_stream_factory_.swap(http_stream_factory);
39 session_->http_stream_factory_for_websocket_.swap(http_stream_factory);
/external/clang/test/SemaCXX/
H A Ddependent-noexcept-unevaluated.cpp14 void swap(T& x, T& y) noexcept(some_trait<T>::value)
26 void swap(array& a) noexcept(noexcept(swap(declval<T&>(), declval<T&>())));
/external/libcxx/test/algorithms/alg.modifying.operations/alg.swap/
H A DAndroid.mk17 test_makefile := external/libcxx/test/algorithms/alg.modifying.operations/alg.swap/Android.mk
19 test_name := algorithms/alg.modifying.operations/alg.swap/iter_swap
23 test_name := algorithms/alg.modifying.operations/alg.swap/swap_ranges
/external/libcxx/test/re/re.results/re.results.swap/
H A DAndroid.mk17 test_makefile := external/libcxx/test/re/re.results/re.results.swap/Android.mk
19 test_name := re/re.results/re.results.swap/member_swap
23 test_name := re/re.results/re.results.swap/non_member_swap
/external/libcxx/test/strings/basic.string/string.nonmembers/string.special/
H A Dswap_noexcept.pass.cpp12 // void swap(basic_string& c)
41 static_assert(noexcept(swap(c1, c2)), "");
46 static_assert(noexcept(swap(c1, c2)), "");
51 static_assert(!noexcept(swap(c1, c2)), "");
/external/libcxx/test/utilities/optional/optional.specalg/
H A Dswap.pass.cpp12 // template <class T> void swap(optional<T>& x, optional<T>& y)
13 // noexcept(noexcept(x.swap(y)));
48 friend void swap(Y& x, Y& y) {std::swap(x.i_, y.i_);} function in class:Y
61 friend void swap(Z& x, Z& y) {throw 6;} function in class:Z
73 static_assert(noexcept(swap(opt1, opt2)) == true, "");
76 swap(opt1, opt2);
83 static_assert(noexcept(swap(opt1, opt2)) == true, "");
87 swap(opt1, opt2);
95 static_assert(noexcept(swap(opt
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DStyleSheetCollection.cpp42 void StyleSheetCollection::swap(StyleSheetCollection& other) function in class:blink::StyleSheetCollection
44 m_styleSheetsForStyleSheetList.swap(other.m_styleSheetsForStyleSheetList);
45 m_activeAuthorStyleSheets.swap(other.m_activeAuthorStyleSheets);
52 m_styleSheetsForStyleSheetList.swap(sheets);
/external/libcxx/test/containers/associative/map/map.special/
H A Dswap_noexcept.pass.cpp12 // void swap(map& c)
42 static_assert(noexcept(swap(c1, c2)), "");
47 static_assert(noexcept(swap(c1, c2)), "");
52 static_assert(noexcept(swap(c1, c2)), "");
57 static_assert(!noexcept(swap(c1, c2)), "");
/external/libcxx/test/containers/associative/multimap/multimap.special/
H A Dswap_noexcept.pass.cpp12 // void swap(multimap& c)
42 static_assert(noexcept(swap(c1, c2)), "");
47 static_assert(noexcept(swap(c1, c2)), "");
52 static_assert(noexcept(swap(c1, c2)), "");
57 static_assert(!noexcept(swap(c1, c2)), "");
/external/libcxx/test/containers/associative/multiset/multiset.special/
H A Dswap_noexcept.pass.cpp12 // void swap(multiset& c)
42 static_assert(noexcept(swap(c1, c2)), "");
47 static_assert(noexcept(swap(c1, c2)), "");
52 static_assert(noexcept(swap(c1, c2)), "");
57 static_assert(!noexcept(swap(c1, c2)), "");
/external/libcxx/test/containers/associative/set/set.special/
H A Dswap_noexcept.pass.cpp12 // void swap(set& c)
42 static_assert(noexcept(swap(c1, c2)), "");
47 static_assert(noexcept(swap(c1, c2)), "");
52 static_assert(noexcept(swap(c1, c2)), "");
57 static_assert(!noexcept(swap(c1, c2)), "");
/external/libcxx/test/containers/container.adaptors/priority.queue/priqueue.special/
H A Dswap_noexcept.pass.cpp12 // void swap(priority_queue& c)
29 static_assert(noexcept(swap(c1, c2)), "");
/external/libcxx/test/containers/container.adaptors/queue/queue.special/
H A Dswap_noexcept.pass.cpp12 // void swap(queue& c)
28 static_assert(noexcept(swap(c1, c2)), "");
/external/libcxx/test/containers/container.adaptors/stack/stack.special/
H A Dswap_noexcept.pass.cpp12 // void swap(stack& c)
28 static_assert(noexcept(swap(c1, c2)), "");
/external/libcxx/test/containers/sequences/deque/deque.special/
H A Dswap_noexcept.pass.cpp12 // void swap(deque& c)
42 static_assert(noexcept(swap(c1, c2)), "");
47 static_assert(noexcept(swap(c1, c2)), "");
52 static_assert(noexcept(swap(c1, c2)), "");
57 static_assert(!noexcept(swap(c1, c2)), "");

Completed in 5839 milliseconds

1234567891011>>