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

1234567891011>>

/external/llvm/test/Instrumentation/AddressSanitizer/X86/
H A Dasm_swap_intel.s4 .globl swap
6 .type swap,@function
7 # CHECK-LABEL: swap:
32 swap: # @swap label
54 .size swap, .Ltmp2-swap
/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/chromium_org/chrome/installer/util/
H A Dregistry_key_backup.h36 void swap(RegistryKeyBackup& other) { function in class:RegistryKeyBackup
37 key_data_.swap(other.key_data_);
/external/chromium_org/third_party/skia/include/gpu/gl/
H A DGrGLExtensions.h30 void swap(GrGLExtensions* that) { function in class:GrGLExtensions
31 fStrings.swap(&that->fStrings);
/external/libcxx/test/input.output/iostream.format/input.streams/iostreamclass/iostream.assign/
H A Dmember_swap.pass.cpp15 // void swap(basic_iostream& rhs);
34 void swap(test_iostream& s) {base::swap(s);} function in struct:test_iostream
44 is1.swap(is2);
67 is1.swap(is2);
/external/libcxx/test/input.output/iostream.format/input.streams/istream/istream.assign/
H A Dmember_swap.pass.cpp15 // void swap(basic_istream& rhs);
34 void swap(test_istream& s) {base::swap(s);} function in struct:test_istream
44 is1.swap(is2);
67 is1.swap(is2);
/external/libcxx/test/input.output/iostream.format/output.streams/ostream.assign/
H A Dmember_swap.pass.cpp15 // void swap(basic_ostream& rhs);
34 void swap(test_ostream& s) {base::swap(s);} function in struct:test_ostream
44 os1.swap(os2);
67 os1.swap(os2);
/external/lldb/examples/customization/pwd-cd-and-system/
H A Dutils.py15 def swap(cls, dir): member in class:Holder
32 Holder.swap(os.getcwd())
/external/skia/include/gpu/gl/
H A DGrGLExtensions.h30 void swap(GrGLExtensions* that) { function in class:GrGLExtensions
31 fStrings.swap(&that->fStrings);
/external/chromium_org/base/mac/
H A Dscoped_mach_vm.h73 void swap(ScopedMachVM& that) { function in class:base::mac::ScopedMachVM
74 std::swap(address_, that.address_);
75 std::swap(size_, that.size_);
/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/content/common/dom_storage/
H A Ddom_storage_map_unittest.cc29 DOMStorageValuesMap swap; local
42 map->SwapValues(&swap);
43 EXPECT_TRUE(swap.empty());
81 map->SwapValues(&swap);
82 EXPECT_EQ(2ul, swap.size());
111 DOMStorageValuesMap swap; local
112 swap[kKey] = base::NullableString16(kValue, false);
113 swap[kKey2] = base::NullableString16(kValue, false);
114 map->SwapValues(&swap);
/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/chromium_org/third_party/WebKit/Source/core/dom/shadow/
H A DContentDistribution.cpp34 void ContentDistribution::swap(ContentDistribution& other) function in class:blink::ContentDistribution
36 m_nodes.swap(other.m_nodes);
37 m_indices.swap(other.m_indices);
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DAlignment.h56 void swap(AlignedBuffer<size, alignment>& a, AlignedBuffer<size, alignment>& b) function in namespace:WTF
59 std::swap(a.buffer[i], b.buffer[i]);
/external/chromium_org/third_party/freetype/src/autofit/
H A Dafangles.c251 FT_Pos swap; local
261 swap = table[j];
263 table[j - 1] = swap;
278 AF_WidthRec swap; local
292 swap = table[j];
294 table[j - 1] = swap;
/external/chromium_org/tools/gn/
H A Doutput_file.h65 inline void swap(OutputFile& lhs, OutputFile& rhs) { function
66 lhs.value().swap(rhs.value());
/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;
278 AF_WidthRec swap; local
292 swap = table[j];
294 table[j - 1] = swap;
/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/qemu/android/base/files/
H A DScopedFd.h61 void swap(ScopedFd* other) { function in class:android::base::ScopedFd
H A DScopedStdioFile.h47 void swap(ScopedStdioFile* other) { function in class:android::base::ScopedStdioFile
/external/replicaisland/src/com/replica/replicaisland/
H A DCrusherAndouComponent.java50 public void setSwap(ChangeComponentsComponent swap) { argument
51 mSwap = swap;

Completed in 5219 milliseconds

1234567891011>>