HomeSort by relevance Sort by last modified time
    Searched full:swap (Results 26 - 50 of 6003) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/mojo/public/bindings/lib/
message.cc 27 void Message::Swap(Message* other) {
28 std::swap(data, other->data);
29 std::swap(handles, other->handles);
  /external/chromium_org/net/http/
http_network_session_peer.cc 25 session_->normal_socket_pool_manager_.swap(socket_pool_manager);
34 session_->http_stream_factory_.swap(http_stream_factory);
39 session_->http_stream_factory_for_websocket_.swap(http_stream_factory);
  /external/chromium_org/webkit/data/test_shell/sort/
sort-quick.js 16 sort.swap(pivot, right);
23 sort.swap(i, j);
29 sort.swap(j, right);
  /external/clang/test/SemaCXX/
dependent-noexcept-unevaluated.cpp 14 void swap(T& x, T& y) noexcept(some_trait<T>::value)
26 void swap(array& a) noexcept(noexcept(swap(declval<T&>(), declval<T&>())));
  /external/stlport/src/
sparc_atomic.s 18 ! 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
  /libcore/luni/src/main/java/java/nio/
MemoryBlock.java 155 public final void pokeCharArray(int offset, char[] src, int srcOffset, int charCount, boolean swap) {
156 Memory.pokeCharArray(address + offset, src, srcOffset, charCount, swap);
159 public final void pokeDoubleArray(int offset, double[] src, int srcOffset, int doubleCount, boolean swap) {
160 Memory.pokeDoubleArray(address + offset, src, srcOffset, doubleCount, swap);
163 public final void pokeFloatArray(int offset, float[] src, int srcOffset, int floatCount, boolean swap) {
164 Memory.pokeFloatArray(address + offset, src, srcOffset, floatCount, swap);
167 public final void pokeIntArray(int offset, int[] src, int srcOffset, int intCount, boolean swap) {
168 Memory.pokeIntArray(address + offset, src, srcOffset, intCount, swap);
171 public final void pokeLongArray(int offset, long[] src, int srcOffset, int longCount, boolean swap) {
172 Memory.pokeLongArray(address + offset, src, srcOffset, longCount, swap);
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
sparc_atomic.s 18 ! 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
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/utility/
swap.hpp 20 // - boost::swap has two template arguments, instead of one, to
22 // not have its own boost::swap overload.
24 #include <algorithm> //for std::swap
32 using namespace std;//use std::swap if argument dependent lookup fails
33 swap(left,right);
49 void swap(T1& left, T2& right) function in namespace:boost
  /external/chromium_org/cc/base/
invalidation_region.cc 21 void InvalidationRegion::Swap(Region* region) {
22 region_.Swap(region);
scoped_ptr_algorithm.h 10 // ScopedContainers need to implement a swap() method since they do not allow
21 container->swap(first, result);
  /external/chromium_org/remoting/base/
typed_buffer.h 38 temp.Swap(*rvalue.object);
39 Swap(temp);
52 temp.Swap(*rvalue.object);
53 Swap(temp);
82 // Swap two buffers.
83 void Swap(TypedBuffer& other) {
84 std::swap(buffer_, other.buffer_);
85 std::swap(length_, other.length_);
  /external/replicaisland/src/com/replica/replicaisland/
QuickSorter.java 57 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 local
69 a[j] = swap;
71 Type swap = a[i]; // swap with partition element local
73 a[right] = swap;
  /external/stlport/stlport/stl/
_relops_cont.h 25 inline void _STLP_CALL swap(_STLP_TEMPLATE_CONTAINER& __x, function
27 __x.swap(__y);
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_relops_cont.h 25 inline void _STLP_CALL swap(_STLP_TEMPLATE_CONTAINER& __x, function
27 __x.swap(__y);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/optional/
optional_fwd.hpp 13 // 10 May 2008 (added swap related forward declaration) Niels Dekker
22 template<class T> void swap ( optional<T>& , optional<T>& ) ;
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_relops_cont.h 25 inline void _STLP_CALL swap(_STLP_TEMPLATE_CONTAINER& __x, function
27 __x.swap(__y);
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_relops_cont.h 25 inline void _STLP_CALL swap(_STLP_TEMPLATE_CONTAINER& __x, function
27 __x.swap(__y);
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_relops_cont.h 25 inline void _STLP_CALL swap(_STLP_TEMPLATE_CONTAINER& __x, function
27 __x.swap(__y);
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_relops_cont.h 25 inline void _STLP_CALL swap(_STLP_TEMPLATE_CONTAINER& __x, function
27 __x.swap(__y);
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_relops_cont.h 25 inline void _STLP_CALL swap(_STLP_TEMPLATE_CONTAINER& __x, function
27 __x.swap(__y);
  /external/chromium_org/chrome/browser/prerender/
prerender_pending_swap_throttle.h 22 // which we would like to swap, but are pending session storage namespace
24 // succeeded, we will swap the prerender, making the underlying request
38 // Called by the PrerenderTracker when the swap failed.
42 // Called by the PrerenderTracker when the swap succeeded.
  /external/chromium_org/mojo/public/bindings/generators/cpp_templates/
struct_builder_definition 7 std::swap(data, data_);
  /external/chromium_org/third_party/icu/source/common/
ucol_swp.h 16 * Swap collation binaries.
37 * Swap a header-less collation binary, inside a resource bundle or ucadata.icu.
47 * Swap ICU collation data like ucadata.icu. See udataswp.h.
56 * Swap inverse UCA collation data (invuca.icu). See udataswp.h.
  /external/icu4c/common/
ucol_swp.h 16 * Swap collation binaries.
37 * Swap a header-less collation binary, inside a resource bundle or ucadata.icu.
47 * Swap ICU collation data like ucadata.icu. See udataswp.h.
56 * Swap inverse UCA collation data (invuca.icu). See udataswp.h.
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/
swap.hpp 10 #include "boost/utility/swap.hpp"

Completed in 2804 milliseconds

12 3 4 5 6 7 8 91011>>