Searched defs:swap (Results 1 - 25 of 170) sorted by relevance

1234567

/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);
H A D_relops_cont.h25 inline void _STLP_CALL swap(_STLP_TEMPLATE_CONTAINER& __x, function
27 __x.swap(__y);
/external/astl/src/
H A Dlist.cpp33 void ListNodeBase::swap(ListNodeBase& a, ListNodeBase& b) { function in class:android::ListNodeBase
37 std::swap(a.mNext, b.mNext);
38 std::swap(a.mPrev, b.mPrev);
/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/eigen/test/
H A Dswap.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_2( swap(Matrix4d()) ); // fixed size, possible vectorization
81 CALL_SUBTEST_3( swap(MatrixX
[all...]
/external/freetype/src/autofit/
H A Dafangles.c251 FT_Pos swap; local
261 swap = table[j];
263 table[j - 1] = swap;
274 AF_WidthRec swap; local
284 swap = table[j];
286 table[j - 1] = swap;
/external/icu4c/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/replicaisland/src/com/replica/replicaisland/
H A DCrusherAndouComponent.java50 public void setSwap(ChangeComponentsComponent swap) { argument
51 mSwap = swap;
/external/webkit/Source/WebCore/css/
H A DStyleSheetList.h49 void swap(StyleSheetVector& sheets) function in class:WebCore::StyleSheetList
51 m_sheets.swap(sheets);
/external/webkit/Source/WebCore/html/
H A DCollectionCache.cpp53 void CollectionCache::swap(CollectionCache& other) function in class:WebCore::CollectionCache
55 std::swap(version, other.version);
56 std::swap(current, other.current);
57 std::swap(position, other.position);
58 std::swap(length, other.length);
59 std::swap(elementsArrayPosition, other.elementsArrayPosition);
61 idCache.swap(other.idCache);
62 nameCache.swap(other.nameCache);
64 std::swap(hasLength, other.hasLength);
65 std::swap(hasNameCach
[all...]
/external/chromium/base/mac/
H A Dscoped_cftyperef.h63 void swap(ScopedCFTypeRef& that) { function in class:base::mac::ScopedCFTypeRef
/external/chromium/chrome/browser/cocoa/
H A Dscoped_authorizationref.h58 void swap(scoped_AuthorizationRef& that) { function in class:scoped_AuthorizationRef
/external/llvm/lib/VMCore/
H A DUse.cpp20 // Use swap Implementation
23 void Use::swap(Use &RHS) { function in class:llvm::Use
/external/qemu/distrib/sdl-1.2.15/src/video/ataricommon/
H A DSDL_ataric2p.S198 swap d2 define
204 swap d3 define
234 swap d0 define
235 swap d1 define
236 swap d2 define
237 swap d3 define
344 swap d3 define
366 swap d3 define
/external/skia/include/utils/win/
H A DSkTScopedComPtr.h51 void swap(SkTScopedComPtr<T>& that) { function in class:SkTScopedComPtr
/external/webrtc/src/system_wrappers/interface/
H A Dscoped_refptr.h46 // b.swap(a);
122 void swap(T** pp) { function in class:webrtc::scoped_refptr
128 void swap(scoped_refptr<T>& r) { function in class:webrtc::scoped_refptr
129 swap(&r.ptr_);
/external/chromium/base/memory/
H A Dscoped_nsobject.h63 void swap(scoped_nsobject& that) { function in class:scoped_nsobject
86 void swap(scoped_nsobject<C>& p1, scoped_nsobject<C>& p2) { function
87 p1.swap(p2);
136 void swap(scoped_nsobject& that) { function in class:scoped_nsobject
/external/chromium/chrome/browser/policy/
H A Dconfiguration_policy_provider_mac_unittest.cc38 swap(other);
42 void swap(PolicyTestParams& other) { function in class:policy::PolicyTestParams
43 std::swap(type_, other.type_);
44 std::swap(policy_name_, other.policy_name_);
45 test_value_.swap(other.test_value_);
/external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/util/
H A Dsorttable.js331 var swap = true; variable
333 while(swap) {
334 swap = false;
338 swap = true;
343 if (!swap) break;
348 swap = true;
353 } // while(swap)
/external/chromium/crypto/
H A Dscoped_capi_types.h80 void swap(ScopedCAPIHandle& b) { function in class:crypto::ScopedCAPIHandle
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dexample-function.cpp46 function(other).swap(*this);
52 function(f).swap(*this);
56 void swap(function& other) { function in class:function
/external/clang/tools/scan-build/
H A Dsorttable.js308 var swap = true; variable
310 while(swap) {
311 swap = false;
315 swap = true;
320 if (!swap) break;
325 swap = true;
330 } // while(swap)
/external/eigen/Eigen/src/Core/
H A DArray.h217 /** Override MatrixBase::swap() since for dynamic-sized matrices of same type it is enough to swap the
221 void swap(ArrayBase<OtherDerived> const & other) function in class:Eigen::Array
H A DDenseStorage.h93 inline void swap(DenseStorage& other) { std::swap(m_data,other.m_data); } function in class:Eigen::DenseStorage
109 inline void swap(DenseStorage& ) {} function in class:Eigen::DenseStorage
139 inline void swap(DenseStorage& other) function in class:Eigen::DenseStorage
140 { std::swap(m_data,other.m_data); std::swap(m_rows,other.m_rows); std::swap(m_cols,other.m_cols); }
159 inline void swap(DenseStorage& other) { std::swap(m_data,other.m_data); std::swap(m_row function in class:Eigen::DenseStorage
178 inline void swap(DenseStorage& other) { std::swap(m_data,other.m_data); std::swap(m_cols,other.m_cols); } function in class:Eigen::DenseStorage
201 inline void swap(DenseStorage& other) function in class:Eigen::DenseStorage
240 inline void swap(DenseStorage& other) { std::swap(m_data,other.m_data); std::swap(m_cols,other.m_cols); } function in class:Eigen::DenseStorage
276 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/guava/guava/src/com/google/common/collect/
H A DObjectArrays.java177 static void swap(Object[] array, int i, int j) { method in class:ObjectArrays

Completed in 644 milliseconds

1234567