Searched defs:swap (Results 126 - 150 of 311) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/skia/src/pathops/
H A DSkIntersectionHelper.h24 bool addCoincident(SkIntersectionHelper& other, const SkIntersections& ts, bool swap) { argument
25 return fContour->addCoincident(fIndex, other.fContour, other.fIndex, ts, swap);
35 bool swap) {
37 swap);
57 void alignTPt(SkIntersectionHelper& other, bool swap, int index, argument
59 fContour->alignTPt(fIndex, other.fContour, other.fIndex, swap, index, ts, point);
34 addPartialCoincident(SkIntersectionHelper& other, const SkIntersections& ts, int index, bool swap) argument
/external/chromium_org/third_party/webrtc/base/
H A Dscoped_ptr.h99 #include <algorithm> // For std::swap().
249 void swap(scoped_ptr_impl& p2) { function in class:rtc::internal::scoped_ptr_impl
250 // Standard swap idiom: 'using std::swap' ensures that std::swap is
251 // present in the overload set, but we call swap unqualified so that
253 using std::swap;
254 swap(static_cast<D&>(data_), static_cast<D&>(p2.data_));
255 swap(data_.ptr, p2.data_.ptr);
404 void swap(scoped_pt function in class:rtc::scoped_ptr
525 void swap(scoped_ptr& p2) { function in class:rtc::scoped_ptr
581 void swap(rtc::scoped_ptr<T, D>& p1, rtc::scoped_ptr<T, D>& p2) { function
[all...]
/external/chromium_org/third_party/webrtc/system_wrappers/interface/
H A Dscoped_ptr.h105 #include <algorithm> // For std::swap().
251 void swap(scoped_ptr_impl& p2) { function in class:webrtc::internal::scoped_ptr_impl
252 // Standard swap idiom: 'using std::swap' ensures that std::swap is
253 // present in the overload set, but we call swap unqualified so that
255 using std::swap;
256 swap(static_cast<D&>(data_), static_cast<D&>(p2.data_));
257 swap(data_.ptr, p2.data_.ptr);
397 void swap(scoped_pt function in class:webrtc::scoped_ptr
507 void swap(scoped_ptr& p2) { function in class:webrtc::scoped_ptr
552 void swap(webrtc::scoped_ptr<T, D>& p1, webrtc::scoped_ptr<T, D>& p2) { function
[all...]
H A Dscoped_vector.h48 ScopedVector(RValue other) { swap(*other.object); }
51 swap(*rhs.object);
86 void swap(std::vector<T*>& other) { v_.swap(other); } function in class:webrtc::ScopedVector
87 void swap(ScopedVector<T>& other) { v_.swap(other.v_); } function in class:webrtc::ScopedVector
89 out->swap(v_);
/external/clang/include/clang/Basic/
H A DPartialDiagnostic.h259 void swap(PartialDiagnostic &PD) { function in class:clang::PartialDiagnostic
260 std::swap(DiagID, PD.DiagID);
261 std::swap(DiagStorage, PD.DiagStorage);
262 std::swap(Allocator, PD.Allocator);
/external/deqp/framework/delibs/decpp/
H A DdeSharedPtr.hpp128 void swap (SharedPtr<T, Deleter, threadSafe>& other);
399 inline void SharedPtr<T, Deleter, threadSafe>::swap (SharedPtr<T, Deleter, threadSafe>& other) function in class:de::SharedPtr
401 using std::swap;
402 swap(m_ptr, other.m_ptr);
403 swap(m_state, other.m_state);
408 inline void swap (SharedPtr<T, Deleter, threadSafe>& a, SharedPtr<T, Deleter, threadSafe>& b) function in namespace:de
410 a.swap(b);
/external/eigen/Eigen/src/Core/
H A DDenseBase.h374 void swap(const DenseBase<OtherDerived>& other, function in class:Eigen::DenseBase
384 void swap(PlainObjectBase<OtherDerived>& other) function in class:Eigen::DenseBase
/external/eigen/Eigen/src/SparseCore/
H A DCompressedStorage.h59 void swap(CompressedStorage& other) function in class:Eigen::internal::CompressedStorage
61 std::swap(m_values, other.m_values);
62 std::swap(m_indices, other.m_indices);
63 std::swap(m_size, other.m_size);
64 std::swap(m_allocatedSize, other.m_allocatedSize);
/external/eigen/unsupported/Eigen/src/Skyline/
H A DSkylineStorage.h66 void swap(SkylineStorage& other) { function in class:Eigen::SkylineStorage
67 std::swap(m_diag, other.m_diag);
68 std::swap(m_upper, other.m_upper);
69 std::swap(m_lower, other.m_lower);
70 std::swap(m_upperProfile, other.m_upperProfile);
71 std::swap(m_lowerProfile, other.m_lowerProfile);
72 std::swap(m_diagSize, other.m_diagSize);
73 std::swap(m_upperSize, other.m_upperSize);
74 std::swap(m_lowerSize, other.m_lowerSize);
75 std::swap(m_allocatedSiz
[all...]
/external/libcxx/src/
H A Ddebug.cpp392 __libcpp_db::swap(void* c1, void* c2) function in class:__libcpp_db
397 _LIBCPP_ASSERT(p1 != nullptr, "debug mode internal logic error swap A");
401 _LIBCPP_ASSERT(p1 != nullptr, "debug mode internal logic error swap B");
405 _LIBCPP_ASSERT(p2 != nullptr, "debug mode internal logic error swap C");
409 _LIBCPP_ASSERT(p2 != nullptr, "debug mode internal logic error swap D");
411 std::swap(p1->beg_, p2->beg_);
412 std::swap(p1->end_, p2->end_);
413 std::swap(p1->cap_, p2->cap_);
H A Dstrstream.cpp115 strstreambuf::swap(strstreambuf& __rhs) function in class:strstreambuf
117 streambuf::swap(__rhs);
118 _VSTD::swap(__strmode_, __rhs.__strmode_);
119 _VSTD::swap(__alsize_, __rhs.__alsize_);
120 _VSTD::swap(__palloc_, __rhs.__palloc_);
121 _VSTD::swap(__pfree_, __rhs.__pfree_);
/external/lldb/tools/debugserver/source/
H A DDNBDataRef.h51 DNBDataRef(const uint8_t *start, size_t size, bool swap);
79 void SetSwap(bool swap) { m_swap = swap; } argument
/external/llvm/include/llvm/ADT/
H A DDenseSet.h57 void swap(DenseSet& RHS) { function in class:llvm::DenseSet
58 TheMap.swap(RHS.TheMap);
H A DIntrusiveRefCntPtr.h168 swap(S);
182 void swap(IntrusiveRefCntPtr& other) { function in class:llvm::IntrusiveRefCntPtr
H A DSmallPtrSet.h136 /// swap - Swaps the elements of two sets.
138 void swap(SmallPtrSetImplBase &RHS);
324 /// swap - Swaps the elements of two sets.
325 void swap(SmallPtrSet<PtrType, SmallSize> &RHS) { function in class:llvm::SmallPtrSetIterator
326 SmallPtrSetImplBase::swap(RHS);
333 /// Implement std::swap in terms of SmallPtrSet swap.
335 inline void swap(llvm::SmallPtrSet<T, N> &LHS, llvm::SmallPtrSet<T, N> &RHS) { function in namespace:std
336 LHS.swap(RHS);
/external/llvm/include/llvm/Analysis/
H A DCGSCCPassManager.h172 std::swap(CGAM, RHS.CGAM);
209 std::swap(CGAM, RHS.CGAM);
253 std::swap(MAM, RHS.MAM);
279 std::swap(MAM, RHS.MAM);
314 friend void swap(ModuleToPostOrderCGSCCPassAdaptor &LHS, function in class:llvm::ModuleToPostOrderCGSCCPassAdaptor
316 using std::swap;
317 swap(LHS.Pass, RHS.Pass);
321 swap(*this, RHS);
394 std::swap(FAM, RHS.FAM);
431 std::swap(FA
534 friend void swap(CGSCCToFunctionPassAdaptor &LHS, CGSCCToFunctionPassAdaptor &RHS) { function in class:llvm::CGSCCToFunctionPassAdaptor
[all...]
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_logic.c123 boolean swap; local
125 swap = FALSE;
141 swap = TRUE;
145 swap = TRUE;
152 if(swap) {
172 unsigned swap:1; member in struct:__anon27131
219 if(table[func].swap) {
/external/mesa3d/src/getopt/
H A Dgetopt_long.c126 char *swap; local
144 swap = nargv[pos];
148 ((char **)nargv)[cstart] = swap;
/external/proguard/src/proguard/evaluation/
H A DStack.java487 public void swap() method in class:Stack
/external/qemu/android/base/
H A DString.cpp259 void String::swap(String* other) { function in class:android::String
273 // Two small strings, swap buffer contents, no need to swap
300 // Always swap the sizes.
/external/qemu/android/base/containers/
H A DPodVector.h244 void swap(PodVector* other) { function in class:android::base::PodVector
/external/skia/include/core/
H A DSkRefCnt.h196 void swap(SkAutoTUnref* other) { function in class:SkAutoTUnref
H A DSkTDArray.h48 this->swap(tmp);
58 this->swap(tmp);
76 void swap(SkTDArray<T>& other) { function in class:SkTDArray
/external/skia/src/pathops/
H A DSkIntersectionHelper.h24 bool addCoincident(SkIntersectionHelper& other, const SkIntersections& ts, bool swap) { argument
25 return fContour->addCoincident(fIndex, other.fContour, other.fIndex, ts, swap);
35 bool swap) {
37 swap);
57 void alignTPt(SkIntersectionHelper& other, bool swap, int index, argument
59 fContour->alignTPt(fIndex, other.fContour, other.fIndex, swap, index, ts, point);
34 addPartialCoincident(SkIntersectionHelper& other, const SkIntersections& ts, int index, bool swap) argument
/external/stlport/stlport/stl/
H A D_algobase.h79 // swap and iter_swap
81 inline void swap(_Tp& __a, _Tp& __b) { function
108 /* namespace specification breaks access to the right swap template overload (at least for gcc) */
109 /*_STLP_STD::*/ swap(*__i1, *__i2);

Completed in 2434 milliseconds

1234567891011>>