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

1234567891011>>

/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/bluetooth/bluedroid/btif/src/
H A Dbtif_sock_rfc.c114 static inline void bd_copy(UINT8* dest, UINT8* src, BOOLEAN swap) argument
116 if (swap)
300 //now swap the slot id
/external/ceres-solver/include/ceres/internal/
H A Dscoped_ptr.h109 void swap(scoped_ptr& p2) { function in class:ceres::internal::scoped_ptr
146 inline void swap(scoped_ptr<C>& p1, scoped_ptr<C>& p2) { function in namespace:ceres::internal
147 p1.swap(p2);
243 void swap(scoped_array& p2) { function in class:ceres::internal::scoped_array
274 inline void swap(scoped_array<C>& p1, scoped_array<C>& p2) { function in namespace:ceres::internal
275 p1.swap(p2);
/external/chromium_org/base/containers/
H A Dscoped_ptr_hash_map.h37 void swap(ScopedPtrHashMap<Key, Value>& other) { function in class:base::ScopedPtrHashMap
38 data_.swap(other.data_);
/external/chromium_org/base/mac/
H A Dscoped_authorizationref.h60 void swap(ScopedAuthorizationRef& that) { function in class:base::mac::ScopedAuthorizationRef
H A Dscoped_block.h73 void swap(ScopedBlock& that) { function in class:base::mac::ScopedBlock
H A Dscoped_ioobject.h53 void swap(ScopedIOObject& that) { function in class:base::mac::ScopedIOObject
H A Dscoped_ioplugininterface.h55 void swap(ScopedIOPluginInterface& that) { function in class:base::mac::ScopedIOPluginInterface
H A Dscoped_launch_data.h56 void swap(ScopedLaunchData& that) { function in class:base::mac::ScopedLaunchData
57 std::swap(object_, that.object_);
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_);
H A Dscoped_nsobject.h72 void swap(scoped_nsprotocol& that) { function in class:base::scoped_nsprotocol
98 void swap(scoped_nsprotocol<C>& p1, scoped_nsprotocol<C>& p2) { function in namespace:base
99 p1.swap(p2);
H A Dscoped_typeref.h111 void swap(ScopedTypeRef& that) { function in class:base::ScopedTypeRef
/external/chromium_org/base/memory/
H A Dref_counted.h254 // b.swap(a);
336 void swap(T** pp) { function in class:scoped_refptr
342 void swap(scoped_refptr<T>& r) { function in class:scoped_refptr
343 swap(&r.ptr_);
H A Dscoped_ptr.h97 #include <algorithm> // For std::swap().
255 void swap(scoped_ptr_impl& p2) { function in class:base::internal::scoped_ptr_impl
256 // Standard swap idiom: 'using std::swap' ensures that std::swap is
257 // present in the overload set, but we call swap unqualified so that
259 using std::swap;
260 swap(static_cast<D&>(data_), static_cast<D&>(p2.data_));
261 swap(data_.ptr, p2.data_.ptr);
406 void swap(scoped_pt function in class:scoped_ptr
516 void swap(scoped_ptr& p2) { function in class:scoped_ptr
559 void swap(scoped_ptr<T, D>& p1, scoped_ptr<T, D>& p2) { function
[all...]
H A Dscoped_vector.h38 ScopedVector(RValue other) { swap(*other.object); }
41 swap(*rhs.object);
76 void swap(std::vector<T*>& other) { v_.swap(other); } function in class:ScopedVector
77 void swap(ScopedVector<T>& other) { v_.swap(other.v_); } function in class:ScopedVector
79 out->swap(v_);
/external/chromium_org/base/process/
H A Dprocess_metrics_linux.cc330 int swap = 0; local
335 ret &= StringToInt(totmaps_fields[kSwapIndex], &swap);
337 // On ChromeOS swap is to zram. We count this as private / shared, as
338 // increased swap decreases available RAM to user processes, which would
340 ws_usage->priv = private_clean + private_dirty + swap;
341 ws_usage->shared = pss + swap;
343 ws_usage->swapped = swap;
/external/chromium_org/base/
H A Dscoped_generic.h105 void swap(ScopedGeneric& other) { function in class:base::ScopedGeneric
106 // Standard swap idiom: 'using std::swap' ensures that std::swap is
107 // present in the overload set, but we call swap unqualified so that
109 using std::swap;
110 swap(static_cast<Traits&>(data_), static_cast<Traits&>(other.data_));
111 swap(data_.generic, other.data_.generic);
159 void swap(const ScopedGeneric<T, Traits>& a, function in namespace:base
161 a.swap(
[all...]
/external/chromium_org/chrome/browser/search/suggestions/
H A Dimage_manager_impl.h76 void swap(ImageRequest* other) { function in struct:suggestions::ImageManagerImpl::ImageRequest
77 std::swap(url, other->url);
78 std::swap(image_url, other->image_url);
79 std::swap(callbacks, other->callbacks);
80 std::swap(fetcher, other->fetcher);
/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/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/content/common/gpu/
H A Dtexture_image_transport_surface.cc232 params.latency_info.swap(latency_info_);
270 params.latency_info.swap(latency_info_);
322 bool swap = true; local
326 // for one of the right size, and returned the back buffer, so don't swap.
327 swap = false;
330 if (swap) {
331 std::swap(backbuffer_, frontbuffer_);
332 std::swap(back_mailbox_, front_mailbox_);
/external/chromium_org/content/shell/browser/
H A Dshell_content_browser_client.cc136 void ShellContentBrowserClient::SetSwapProcessesForRedirect(bool swap) { argument
137 g_swap_processes_for_redirect = swap;
/external/chromium_org/crypto/
H A Dscoped_capi_types.h80 void swap(ScopedCAPIHandle& b) { function in class:crypto::ScopedCAPIHandle
/external/chromium_org/mojo/embedder/
H A Dscoped_platform_handle.h33 void swap(ScopedPlatformHandle& other) { function in class:mojo::embedder::ScopedPlatformHandle

Completed in 3343 milliseconds

1234567891011>>