Searched defs:swap (Results 176 - 200 of 311) sorted by relevance

1234567891011>>

/external/stlport/stlport/stl/
H A D_hash_set.h170 void swap(_Self& __hs) { _M_ht.swap(__hs._M_ht); } function in class:hash_set
172 void _M_swap_workaround(_Self& __x) { swap(__x); }
352 void swap(_Self& hs) { _M_ht.swap(hs._M_ht); } function in class:hash_multiset
354 void _M_swap_workaround(_Self& __x) { swap(__x); }
H A D_string_workaround.h576 void swap(_Self& __s) { _Base::swap(__s); } function in class:basic_string
578 void _M_swap_workaround(_Self& __x) { swap(__x); }
H A D_unordered_map.h123 void swap(_Self& __hs) { _M_ht.swap(__hs._M_ht); } function in class:unordered_map
125 void _M_swap_workaround(_Self& __x) { swap(__x); }
291 void swap(_Self& __hs) { _M_ht.swap(__hs._M_ht); } function in class:unordered_multimap
293 void _M_swap_workaround(_Self& __x) { swap(__x); }
H A D_unordered_set.h117 void swap(_Self& __hs) { _M_ht.swap(__hs._M_ht); } function in class:unordered_set
119 void _M_swap_workaround(_Self& __x) { swap(__x); }
267 void swap(_Self& hs) { _M_ht.swap(hs._M_ht); } function in class:unordered_multiset
269 void _M_swap_workaround(_Self& __x) { swap(__x); }
/external/stlport/stlport/stl/debug/
H A D_hashtable.h178 void swap(_Self& __ht) { function in class:hashtable
180 _M_non_dbg_impl.swap(__ht._M_non_dbg_impl);
H A D_slist.h203 void swap(_Self& __x) { function in class:slist
205 _M_non_dbg_impl.swap(__x._M_non_dbg_impl);
208 void _M_swap_workaround(_Self& __x) { swap(__x); }
/external/stlport/stlport/stl/pointers/
H A D_deque.h222 void swap(_Self& __x) { _M_impl.swap(__x._M_impl); } function in class:deque
224 void _M_swap_workaround(_Self& __x) { swap(__x); }
H A D_list.h173 void swap(_Self &__x) { _M_impl.swap(__x._M_impl); } function in class:list
175 void _M_swap_workaround(_Self& __x) { swap(__x); }
H A D_set.h222 void swap(_Self& __x) { _M_t.swap(__x._M_t); } function in class:set
224 void _M_swap_workaround(_Self& __x) { swap(__x); }
475 void swap(_Self& __x) { _M_t.swap(__x._M_t); } function in class:multiset
477 void _M_swap_workaround(_Self& __x) { swap(__x); }
H A D_slist.h199 void swap(_Self& __x) { _M_impl.swap(__x._M_impl); } function in class:slist
201 void _M_swap_workaround(_Self& __x) { swap(__x); }
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3collections.h270 ANTLR3_BOOLEAN (*swap) (struct ANTLR3_VECTOR_struct *, ANTLR3_UINT32 entry1, ANTLR3_UINT32 entry2); member in struct:ANTLR3_VECTOR_struct
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DWTFString.h126 void swap(String& o) { m_impl.swap(o.m_impl); } function in class:WTF::String
480 inline void swap(String& a, String& b) { a.swap(b); } function in namespace:WTF
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Dpkgitems.cpp64 NativeItem(const Item *item, UDataSwapFn *swap) : swapped(NULL) { argument
65 setItem(item, swap);
80 void setItem(const Item *item, UDataSwapFn *swap) { argument
108 swap(ds, pItem->data, pItem->length, swapped, &errorCode);
528 /* swap the base name, between the header and the extension data */
/external/chromium_org/third_party/skia/src/core/
H A DSkString.cpp321 this->swap(tmp);
330 this->swap(tmp);
400 this->swap(tmp);
435 this->swap(tmp);
492 this->swap(tmp);
618 this->swap(tmp);
623 void SkString::swap(SkString& other) { function in class:SkString
/external/chromium_org/third_party/skia/src/pathops/
H A DSkOpContour.cpp13 const SkIntersections& ts, bool swap) {
27 coincidence.fTs[swap][0] = ts[0][0];
28 coincidence.fTs[swap][1] = ts[0][1];
29 coincidence.fTs[!swap][0] = ts[1][0];
30 coincidence.fTs[!swap][1] = ts[1][1];
31 coincidence.fPts[swap][0] = pt0;
32 coincidence.fPts[swap][1] = pt1;
35 coincidence.fPts[!swap][0] = nearStart ? ts.pt2(0).asSkPoint() : pt0;
36 coincidence.fPts[!swap][1] = nearEnd ? ts.pt2(1).asSkPoint() : pt1;
171 const SkIntersections& ts, int ptIndex, bool swap) {
12 addCoincident(int index, SkOpContour* other, int otherIndex, const SkIntersections& ts, bool swap) argument
170 addPartialCoincident(int index, SkOpContour* other, int otherIndex, const SkIntersections& ts, int ptIndex, bool swap) argument
196 align(const SkOpSegment::AlignedSpan& aligned, bool swap, SkCoincidence* coincidence) argument
227 alignTPt(int segmentIndex, const SkOpContour* other, int otherIndex, bool swap, int tIndex, SkIntersections* ts, SkPoint* point) const argument
247 alignT(bool swap, int tIndex, SkIntersections* ts) const argument
[all...]
/external/clang/lib/AST/
H A DAPValue.cpp250 void APValue::swap(APValue &RHS) { function in class:APValue
251 std::swap(Kind, RHS.Kind);
/external/eigen/Eigen/src/Core/
H A DTriangularMatrix.h356 void swap(TriangularBase<OtherDerived> const & other) function in class:Eigen::TriangularView
362 void swap(MatrixBase<OtherDerived> const & other) function in class:Eigen::TriangularView
678 other.derived().swap(other_evaluated);
/external/eigen/Eigen/src/SparseCore/
H A DSparseVector.h232 * Overloaded for performance: this version performs a \em shallow swap by swaping pointers and attributes only.
233 * \sa SparseMatrixBase::swap()
235 inline void swap(SparseVector& other) function in class:Eigen::SparseVector
237 std::swap(m_size, other.m_size);
238 m_data.swap(other.m_data);
245 swap(other.const_cast_derived());
260 this->swap(tmp);
/external/fio/
H A Dverify.c122 char swap[200]; local
124 assert(len <= sizeof(swap));
126 memcpy(&swap, buf1, len);
128 memcpy(buf2, &swap, len);
/external/icu/icu4c/source/tools/toolutil/
H A Dpkgitems.cpp64 NativeItem(const Item *item, UDataSwapFn *swap) : swapped(NULL) { argument
65 setItem(item, swap);
80 void setItem(const Item *item, UDataSwapFn *swap) { argument
108 swap(ds, pItem->data, pItem->length, swapped, &errorCode);
528 /* swap the base name, between the header and the extension data */
/external/llvm/include/llvm/ADT/
H A DSmallBitVector.h511 swap(RHS);
516 void swap(SmallBitVector &RHS) { function in class:llvm::SmallBitVector
517 std::swap(X, RHS.X);
598 /// Implement std::swap in terms of BitVector swap.
600 swap(llvm::SmallBitVector &LHS, llvm::SmallBitVector &RHS) { function in namespace:std
601 LHS.swap(RHS);
H A DSmallVector.h412 void swap(SmallVectorImpl &RHS);
677 void SmallVectorImpl<T>::swap(SmallVectorImpl<T> &RHS) { function in class:llvm::SmallVectorImpl
682 std::swap(this->BeginX, RHS.BeginX);
683 std::swap(this->EndX, RHS.EndX);
684 std::swap(this->CapacityX, RHS.CapacityX);
696 std::swap((*this)[i], RHS[i]);
897 /// Implement std::swap in terms of SmallVector swap.
900 swap(llvm::SmallVectorImpl<T> &LHS, llvm::SmallVectorImpl<T> &RHS) { function in namespace:std
901 LHS.swap(RH
907 swap(llvm::SmallVector<T, N> &LHS, llvm::SmallVector<T, N> &RHS) { function in namespace:std
[all...]
H A DStringMap.h101 void swap(StringMapImpl &Other) { function in class:llvm::StringMapImpl
102 std::swap(TheTable, Other.TheTable);
103 std::swap(NumBuckets, Other.NumBuckets);
104 std::swap(NumItems, Other.NumItems);
105 std::swap(NumTombstones, Other.NumTombstones);
246 StringMapImpl::swap(RHS);
247 std::swap(Allocator, RHS.Allocator);
/external/llvm/include/llvm/IR/
H A DPassManager.h74 friend void swap(PreservedAnalyses &LHS, PreservedAnalyses &RHS) { function in class:llvm::PreservedAnalyses
75 using std::swap;
76 swap(LHS.PreservedPassIDs, RHS.PreservedPassIDs);
79 swap(*this, RHS);
219 friend void swap(PassModel &LHS, PassModel &RHS) { function in struct:llvm::detail::PassModel
220 using std::swap;
221 swap(LHS.Pass, RHS.Pass);
224 swap(*this, RHS);
245 friend void swap(PassModel &LHS, PassModel &RHS) { function in struct:llvm::detail::PassModel
246 using std::swap;
321 friend void swap(AnalysisResultModel &LHS, AnalysisResultModel &RHS) { function in struct:llvm::detail::AnalysisResultModel
353 friend void swap(AnalysisResultModel &LHS, AnalysisResultModel &RHS) { function in struct:llvm::detail::AnalysisResultModel
405 friend void swap(AnalysisPassModel &LHS, AnalysisPassModel &RHS) { function in struct:llvm::detail::AnalysisPassModel
439 friend void swap(AnalysisPassModel &LHS, AnalysisPassModel &RHS) { function in struct:llvm::detail::AnalysisPassModel
979 friend void swap(ModuleToFunctionPassAdaptor &LHS, ModuleToFunctionPassAdaptor &RHS) { function in class:llvm::ModuleToFunctionPassAdaptor
[all...]
/external/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h186 IntT swap(IntT Int) const { function in class:llvm::RawInstrProfReader
190 ptrdiff_t Offset = (swap(CounterPtr) - CountersDelta) / sizeof(uint64_t);
194 ptrdiff_t Offset = (swap(NamePtr) - NamesDelta) / sizeof(char);

Completed in 1193 milliseconds

1234567891011>>