Searched refs:swap (Results 1 - 25 of 591) sorted by relevance

1234567891011>>

/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/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...]
H A DCollectionCache.h40 swap(tmp);
46 void swap(CollectionCache&);
/external/clang/test/SemaCXX/
H A Ddependent-noexcept-unevaluated.cpp14 void swap(T& x, T& y) noexcept(some_trait<T>::value)
26 void swap(array& a) noexcept(noexcept(swap(declval<T&>(), declval<T&>())));
/external/openssl/crypto/perlasm/
H A Dcbc.pl28 local($name,$enc_func,$dec_func,$swap,$iv_off,$enc_off,$p1,$p2,$p3)=@_;
31 # swap is true if byte order needs to be reversed
119 &bswap("eax") if $swap;
120 &bswap("ebx") if $swap;
130 &bswap("eax") if $swap;
131 &bswap("ebx") if $swap;
182 &bswap("eax") if $swap;
183 &bswap("ebx") if $swap;
193 &bswap("eax") if $swap;
194 &bswap("ebx") if $swap;
[all...]
/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 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;
H A DCrusherAndouComponent.java50 public void setSwap(ChangeComponentsComponent swap) { argument
51 mSwap = swap;
/external/webkit/Source/WebCore/xml/
H A DXPathNodeSet.h50 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:WebCore::XPath::NodeSet
/external/webkit/Source/WebKit2/Shared/
H A DImmutableArray.cpp44 m_entries.swap(entries);
/external/webkit/Source/JavaScriptCore/parser/
H A DParserArena.h69 void swap(ParserArena& otherArena) function in class:JSC::ParserArena
71 std::swap(m_freeableMemory, otherArena.m_freeableMemory);
72 std::swap(m_freeablePoolEnd, otherArena.m_freeablePoolEnd);
73 m_identifierArena.swap(otherArena.m_identifierArena);
74 m_freeablePools.swap(otherArena.m_freeablePools);
75 m_deletableObjects.swap(otherArena.m_deletableObjects);
76 m_refCountedObjects.swap(otherArena.m_refCountedObjects);
/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/chromium/third_party/libjingle/source/talk/base/
H A Dscoped_ptr.h84 void swap(scoped_ptr & b) { function in class:talk_base::scoped_ptr
110 void swap(scoped_ptr<T>& a, scoped_ptr<T>& b) { function in namespace:talk_base
111 a.swap(b);
162 void swap(scoped_array & b) { function in class:talk_base::scoped_array
184 void swap(scoped_array<T>& a, scoped_array<T>& b) { function in namespace:talk_base
185 a.swap(b);
230 void swap(scoped_ptr_malloc & b) { function in class:talk_base::scoped_ptr_malloc
252 void swap(scoped_ptr_malloc<T,FF>& a, scoped_ptr_malloc<T,FF>& b) { function in namespace:talk_base
253 a.swap(b);
/external/llvm/include/llvm/ADT/
H A DOwningPtr.h66 void swap(OwningPtr &RHS) { function in class:llvm::OwningPtr
74 inline void swap(OwningPtr<T> &a, OwningPtr<T> &b) { function in namespace:llvm
75 a.swap(b);
119 void swap(OwningArrayPtr &RHS) { function in class:llvm::OwningArrayPtr
127 inline void swap(OwningArrayPtr<T> &a, OwningArrayPtr<T> &b) { function in namespace:llvm
128 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/chromium/chrome/browser/history/
H A Dhistory_types.cc47 std::swap(id_, other->id_);
49 title_.swap(other->title_);
50 std::swap(visit_count_, other->visit_count_);
51 std::swap(typed_count_, other->typed_count_);
52 std::swap(last_visit_, other->last_visit_);
53 std::swap(hidden_, other->hidden_);
115 std::swap(id, other->id);
116 title.swap(other->title);
117 std::swap(date_added, other->date_added);
118 std::swap(parent_folder_i
[all...]
/external/chromium/base/
H A Dbase64.cc22 output->swap(temp);
37 output->swap(temp);
H A Dcallback_internal.cc28 invoker_storage_.swap(*invoker_storage);
/external/chromium/chrome/browser/safe_browsing/
H A Dsafe_browsing_store_file.h224 std::vector<SBAddPrefix>().swap(add_prefixes_);
225 std::vector<SBSubPrefix>().swap(sub_prefixes_);
226 std::vector<SBAddFullHash>().swap(add_hashes_);
227 std::vector<SBSubFullHash>().swap(sub_hashes_);
235 std::set<int32>().swap(add_chunks_cache_);
236 std::set<int32>().swap(sub_chunks_cache_);
237 base::hash_set<int32>().swap(add_del_cache_);
238 base::hash_set<int32>().swap(sub_del_cache_);
/external/junit/src/junit/runner/
H A DSorter.java6 * A custom quick sort with support to customize the swap behaviour.
12 public void swap(Vector values, int left, int right); method in interface:Sorter.Swapper
25 swapper.swap(values, left, right);
/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/platform/graphics/transforms/
H A DMatrix3DTransformOperation.cpp50 std::swap(fromT, toT);
/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/webkit/Source/JavaScriptCore/wtf/
H A DNonCopyingSort.h32 using std::swap;
45 swap(array[root], array[child]);
71 swap(start[endIndex], start[0]);

Completed in 792 milliseconds

1234567891011>>