Searched refs:swap (Results 76 - 100 of 1727) sorted by relevance

1234567891011>>

/external/chromium_org/mojo/system/
H A Dmessage_in_transit_queue.cc28 queue_.swap(other->queue_);
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathNodeSet.h49 void swap(NodeSet& other) { std::swap(m_isSorted, other.m_isSorted); std::swap(m_subtreesAreDisjoint, other.m_subtreesAreDisjoint); m_nodes.swap(other.m_nodes); } function in class:blink::XPath::NodeSet
/external/chromium_org/third_party/WebKit/Source/platform/animation/
H A DKeyframeValueList.h65 swap(copy);
69 void swap(KeyframeValueList& other) function in class:blink::KeyframeValueList
71 std::swap(m_property, other.m_property);
72 m_values.swap(other.m_values);
/external/chromium_org/third_party/webrtc/common_video/
H A Dplane.cc15 #include <algorithm> // swap
74 std::swap(stride_, plane.stride_);
75 std::swap(allocated_size_, plane.allocated_size_);
76 std::swap(plane_size_, plane.plane_size_);
77 buffer_.swap(plane.buffer_);
/external/chromium_org/tools/gn/
H A Dsource_file.h79 void swap(SourceFile& other) { function in class:SourceFile
80 value_.swap(other.value_);
108 inline void swap(SourceFile& lhs, SourceFile& rhs) { function
109 lhs.swap(rhs);
H A Dlabel.h86 void swap(Label& other) { function in class:Label
87 dir_.swap(other.dir_);
88 name_.swap(other.name_);
89 toolchain_dir_.swap(other.toolchain_dir_);
90 toolchain_name_.swap(other.toolchain_name_);
131 inline void swap(Label& lhs, Label& rhs) { function
132 lhs.swap(rhs);
/external/icu/icu4c/source/layoutex/
H A DLXUtilities.cpp80 le_int32 swap = array[front]; local
83 array[back] = swap;
92 float swap = array[front]; local
95 array[back] = swap;
/external/libcxx/test/containers/container.adaptors/priority.queue/priqueue.members/
H A Dswap.pass.cpp14 // void swap(priority_queue& q);
26 q1.swap(q2);
/external/libcxx/test/containers/container.adaptors/priority.queue/priqueue.special/
H A Dswap.pass.cpp15 // void swap(priority_queue<T, Container, Compare>& x,
28 swap(q1, q2);
/external/libcxx/test/re/re.regex/re.regex.nonmemb/re.regex.nmswap/
H A Dswap.pass.cpp15 // void swap(basic_regex<charT, traits>& lhs, basic_regex<charT, traits>& rhs);
24 swap(r2, r1);
/external/libcxx/test/re/re.regex/re.regex.swap/
H A Dswap.pass.cpp14 // void swap(basic_regex& e);
23 r2.swap(r1);
/external/libcxx/test/utilities/tuple/tuple.tuple/tuple.special/
H A Dnon_member_swap.pass.cpp15 // void swap(tuple<Types...>& x, tuple<Types...>& y);
28 swap(t0, t1);
34 swap(t0, t1);
42 swap(t0, t1);
52 swap(t0, t1);
/external/libcxx/test/utilities/tuple/tuple.tuple/tuple.swap/
H A Dmember_swap.pass.cpp14 // void swap(tuple& rhs);
27 t0.swap(t1);
33 t0.swap(t1);
41 t0.swap(t1);
51 t0.swap(t1);
/external/libcxx/test/utilities/utility/pairs/pairs.pair/
H A Dswap.pass.cpp14 // void swap(pair& p);
25 p1.swap(p2);
/external/libcxx/test/utilities/utility/pairs/pairs.spec/
H A Dnon_member_swap.pass.cpp14 // template <class T1, class T2> void swap(pair<T1, T2>& x, pair<T1, T2>& y);
25 swap(p1, p2);
/external/lldb/include/lldb/Utility/
H A DPriorityPointerPair.h65 m_low.swap(l);
71 m_high.swap(h);
77 m_low.swap(l);
83 m_high.swap(h);
/external/replicaisland/src/com/replica/replicaisland/
H A DQuickSorter.java57 while (comparator.compare(a[++i], a[right]) < 0) { // find item on left to swap
59 while (comparator.compare(a[right], a[--j]) < 0) { // find item on right to swap
67 Type swap = a[i]; // swap two elements into place
69 a[j] = swap;
71 Type swap = a[i]; // swap with partition element
73 a[right] = swap;
/external/clang/test/Index/
H A Dindex-templates.cpp58 template<typename T> void swap(T&, T&);
59 template<typename T, typename U> void swap(Y<T, U>&, Y<T, U>&);
60 void swap(Z4&, Z4&);
69 swap(x, x);
72 swap<T>(x, x);
168 // CHECK-LOAD: index-templates.cpp:69:3: OverloadedDeclRef=swap[60:6, 59:39, 58:27]
170 // CHECK-LOAD: index-templates.cpp:72:3: OverloadedDeclRef=swap[58:27, 59:39]
/external/webrtc/src/system_wrappers/interface/
H A Dscoped_ptr.h84 void swap(scoped_ptr & b) { function in class:webrtc::scoped_ptr
110 void swap(scoped_ptr<T>& a, scoped_ptr<T>& b) { function in namespace:webrtc
111 a.swap(b);
162 void swap(scoped_array & b) { function in class:webrtc::scoped_array
184 void swap(scoped_array<T>& a, scoped_array<T>& b) { function in namespace:webrtc
185 a.swap(b);
230 void swap(scoped_ptr_malloc & b) { function in class:webrtc::scoped_ptr_malloc
252 void swap(scoped_ptr_malloc<T,FF>& a, scoped_ptr_malloc<T,FF>& b) { function in namespace:webrtc
253 a.swap(b);
/external/stlport/src/
H A Dsparc_atomic.s18 ! swap [%o0], %o3 ! Do the compare and swap
37 ! swap [%o0], %o3 ! Do the compare and swap
59 ! swap [%o0], %o3 ! Do the compare and swap
/external/eigen/Eigen/src/Core/
H A DDenseStorage.h129 inline void swap(DenseStorage& other) { std::swap(m_data,other.m_data); } function in class:Eigen::DenseStorage
145 inline void swap(DenseStorage& ) {} function in class:Eigen::DenseStorage
175 inline void swap(DenseStorage& other) function in class:Eigen::DenseStorage
176 { std::swap(m_data,other.m_data); std::swap(m_rows,other.m_rows); std::swap(m_cols,other.m_cols); }
195 inline void swap(DenseStorage& other) { std::swap(m_data,other.m_data); std::swap(m_row function in class:Eigen::DenseStorage
214 inline void swap(DenseStorage& other) { std::swap(m_data,other.m_data); std::swap(m_cols,other.m_cols); } function in class:Eigen::DenseStorage
237 inline void swap(DenseStorage& other) function in class:Eigen::DenseStorage
276 inline void swap(DenseStorage& other) { std::swap(m_data,other.m_data); std::swap(m_cols,other.m_cols); } function in class:Eigen::DenseStorage
312 inline void swap(DenseStorage& other) { std::swap(m_data,other.m_data); std::swap(m_rows,other.m_rows); } function in class:Eigen::DenseStorage
[all...]
/external/chromium_org/base/
H A Dbase64.cc19 output->swap(temp);
33 output->swap(temp);
/external/chromium_org/base/mac/
H A Dscoped_launch_data.h56 void swap(ScopedLaunchData& that) { function in class:base::mac::ScopedLaunchData
57 std::swap(object_, that.object_);
/external/chromium_org/chrome/browser/safe_browsing/
H A Dsafe_browsing_store_file.h213 SBAddPrefixes().swap(add_prefixes_);
214 SBSubPrefixes().swap(sub_prefixes_);
215 std::vector<SBAddFullHash>().swap(add_hashes_);
216 std::vector<SBSubFullHash>().swap(sub_hashes_);
224 std::set<int32>().swap(add_chunks_cache_);
225 std::set<int32>().swap(sub_chunks_cache_);
226 base::hash_set<int32>().swap(add_del_cache_);
227 base::hash_set<int32>().swap(sub_del_cache_);
/external/chromium_org/media/cast/logging/
H A Dsimple_event_subscriber.cc34 frame_events->swap(frame_events_);
41 packet_events->swap(packet_events_);

Completed in 2503 milliseconds

1234567891011>>