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

1 2 3 4 56 7 8 91011>>

  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
unordered_map 150 swap(__unordered_map<_Key, _Tp, _Hash, _Pred,
154 { __x.swap(__y); }
159 swap(__unordered_multimap<_Key, _Tp, _Hash, _Pred,
163 { __x.swap(__y); }
234 this->swap(__x);
317 this->swap(__x);
333 swap(unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __x,
335 { __x.swap(__y); }
339 swap(unordered_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>& __x,
341 { __x.swap(__y);
    [all...]
unordered_set 148 swap(__unordered_set<_Value, _Hash, _Pred, _Alloc, __cache_hash_code>& __x,
150 { __x.swap(__y); }
155 swap(__unordered_multiset<_Value, _Hash, _Pred,
159 { __x.swap(__y); }
227 this->swap(__x);
307 this->swap(__x);
323 swap(unordered_set<_Value, _Hash, _Pred, _Alloc>& __x,
325 { __x.swap(__y); }
329 swap(unordered_multiset<_Value, _Hash, _Pred, _Alloc>& __x,
331 { __x.swap(__y);
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
unordered_map 150 swap(__unordered_map<_Key, _Tp, _Hash, _Pred,
154 { __x.swap(__y); }
159 swap(__unordered_multimap<_Key, _Tp, _Hash, _Pred,
163 { __x.swap(__y); }
234 this->swap(__x);
317 this->swap(__x);
333 swap(unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __x,
335 { __x.swap(__y); }
339 swap(unordered_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>& __x,
341 { __x.swap(__y);
    [all...]
unordered_set 148 swap(__unordered_set<_Value, _Hash, _Pred, _Alloc, __cache_hash_code>& __x,
150 { __x.swap(__y); }
155 swap(__unordered_multiset<_Value, _Hash, _Pred,
159 { __x.swap(__y); }
227 this->swap(__x);
307 this->swap(__x);
323 swap(unordered_set<_Value, _Hash, _Pred, _Alloc>& __x,
325 { __x.swap(__y); }
329 swap(unordered_multiset<_Value, _Hash, _Pred, _Alloc>& __x,
331 { __x.swap(__y);
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
unordered_map 150 swap(__unordered_map<_Key, _Tp, _Hash, _Pred,
154 { __x.swap(__y); }
159 swap(__unordered_multimap<_Key, _Tp, _Hash, _Pred,
163 { __x.swap(__y); }
234 this->swap(__x);
317 this->swap(__x);
333 swap(unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __x,
335 { __x.swap(__y); }
339 swap(unordered_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>& __x,
341 { __x.swap(__y);
    [all...]
unordered_set 148 swap(__unordered_set<_Value, _Hash, _Pred, _Alloc, __cache_hash_code>& __x,
150 { __x.swap(__y); }
155 swap(__unordered_multiset<_Value, _Hash, _Pred,
159 { __x.swap(__y); }
227 this->swap(__x);
307 this->swap(__x);
323 swap(unordered_set<_Value, _Hash, _Pred, _Alloc>& __x,
325 { __x.swap(__y); }
329 swap(unordered_multiset<_Value, _Hash, _Pred, _Alloc>& __x,
331 { __x.swap(__y);
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/tr1_impl/
unordered_map 150 swap(__unordered_map<_Key, _Tp, _Hash, _Pred,
154 { __x.swap(__y); }
159 swap(__unordered_multimap<_Key, _Tp, _Hash, _Pred,
163 { __x.swap(__y); }
234 this->swap(__x);
317 this->swap(__x);
333 swap(unordered_map<_Key, _Tp, _Hash, _Pred, _Alloc>& __x,
335 { __x.swap(__y); }
339 swap(unordered_multimap<_Key, _Tp, _Hash, _Pred, _Alloc>& __x,
341 { __x.swap(__y);
    [all...]
unordered_set 148 swap(__unordered_set<_Value, _Hash, _Pred, _Alloc, __cache_hash_code>& __x,
150 { __x.swap(__y); }
155 swap(__unordered_multiset<_Value, _Hash, _Pred,
159 { __x.swap(__y); }
227 this->swap(__x);
307 this->swap(__x);
323 swap(unordered_set<_Value, _Hash, _Pred, _Alloc>& __x,
325 { __x.swap(__y); }
329 swap(unordered_multiset<_Value, _Hash, _Pred, _Alloc>& __x,
331 { __x.swap(__y);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
RefPtr.h 74 void swap(RefPtr&);
97 swap(ptr);
104 swap(ptr);
111 swap(ptr);
118 swap(ptr);
125 swap(ptr);
129 template<class T> inline void RefPtr<T>::swap(RefPtr& o) function in class:WTF::RefPtr
131 std::swap(m_ptr, o.m_ptr);
134 template<class T> inline void swap(RefPtr<T>& a, RefPtr<T>& b) function in namespace:WTF
136 a.swap(b)
    [all...]
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineStorage.h 66 void swap(SkylineStorage& other) { function in class:Eigen::SkylineStorage
67 std::swap(m_diag, other.m_diag);
68 std::swap(m_upper, other.m_upper);
69 std::swap(m_lower, other.m_lower);
70 std::swap(m_upperProfile, other.m_upperProfile);
71 std::swap(m_lowerProfile, other.m_lowerProfile);
72 std::swap(m_diagSize, other.m_diagSize);
73 std::swap(m_upperSize, other.m_upperSize);
74 std::swap(m_lowerSize, other.m_lowerSize);
75 std::swap(m_allocatedSize, other.m_allocatedSize)
    [all...]
  /external/marisa-trie/lib/marisa/
tail.cc 38 temp_mapper.swap(mapper);
49 temp.swap(this);
76 temp.swap(this);
106 Tail().swap(this);
109 void Tail::swap(Tail *rhs) { function in class:marisa::Tail
110 buf_.swap(&rhs->buf_);
136 temp_offsets.swap(offsets);
138 buf_.swap(&buf);
192 temp_offsets.swap(offsets);
194 buf_.swap(&buf)
    [all...]
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
tail.cc 38 temp_mapper.swap(mapper);
49 temp.swap(this);
76 temp.swap(this);
106 Tail().swap(this);
109 void Tail::swap(Tail *rhs) { function in class:marisa_alpha::Tail
110 buf_.swap(&rhs->buf_);
136 temp_offsets.swap(offsets);
138 buf_.swap(&buf);
192 temp_offsets.swap(offsets);
194 buf_.swap(&buf)
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/utility/
value_init.hpp 10 // 21 Ago 2008 (Added swap) Niels Dekker, Fernando Cacciola
30 #include <boost/swap.hpp>
143 void swap(initialized & arg) function in class:boost::initialized
145 ::boost::swap( this->data(), arg.data() );
173 void swap ( initialized<T> & lhs, initialized<T> & rhs ) function in namespace:boost
175 lhs.swap(rhs) ;
203 void swap(value_initialized & arg) function in class:boost::value_initialized
205 m_data.swap(arg.m_data);
233 void swap ( value_initialized<T> & lhs, value_initialized<T> & rhs ) function in namespace:boost
235 lhs.swap(rhs)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/
thread 125 { swap(__t); }
147 swap(__t);
152 swap(thread&& __t)
153 { std::swap(_M_id, __t._M_id); }
194 swap(thread& __x, thread& __y)
195 { __x.swap(__y); }
198 swap(thread&& __x, thread& __y)
199 { __x.swap(__y); }
202 swap(thread& __x, thread&& __y)
203 { __x.swap(__y);
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/
thread 125 { swap(__t); }
147 swap(__t);
152 swap(thread&& __t)
153 { std::swap(_M_id, __t._M_id); }
194 swap(thread& __x, thread& __y)
195 { __x.swap(__y); }
198 swap(thread&& __x, thread& __y)
199 { __x.swap(__y); }
202 swap(thread& __x, thread&& __y)
203 { __x.swap(__y);
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/
thread 125 { swap(__t); }
147 swap(__t);
152 swap(thread&& __t)
153 { std::swap(_M_id, __t._M_id); }
194 swap(thread& __x, thread& __y)
195 { __x.swap(__y); }
198 swap(thread&& __x, thread& __y)
199 { __x.swap(__y); }
202 swap(thread& __x, thread&& __y)
203 { __x.swap(__y);
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/
thread 125 { swap(__t); }
147 swap(__t);
152 swap(thread&& __t)
153 { std::swap(_M_id, __t._M_id); }
194 swap(thread& __x, thread& __y)
195 { __x.swap(__y); }
198 swap(thread&& __x, thread& __y)
199 { __x.swap(__y); }
202 swap(thread& __x, thread&& __y)
203 { __x.swap(__y);
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/
thread 125 { swap(__t); }
147 swap(__t);
152 swap(thread&& __t)
153 { std::swap(_M_id, __t._M_id); }
194 swap(thread& __x, thread& __y)
195 { __x.swap(__y); }
198 swap(thread&& __x, thread& __y)
199 { __x.swap(__y); }
202 swap(thread& __x, thread&& __y)
203 { __x.swap(__y);
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
ios.cpp 404 ios_base::swap(ios_base& rhs) _NOEXCEPT
406 _VSTD::swap(__fmtflags_, rhs.__fmtflags_);
407 _VSTD::swap(__precision_, rhs.__precision_);
408 _VSTD::swap(__width_, rhs.__width_);
409 _VSTD::swap(__rdstate_, rhs.__rdstate_);
410 _VSTD::swap(__exceptions_, rhs.__exceptions_);
413 _VSTD::swap(lhs_loc, rhs_loc);
414 _VSTD::swap(__fn_, rhs.__fn_);
415 _VSTD::swap(__index_, rhs.__index_);
416 _VSTD::swap(__event_size_, rhs.__event_size_)
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
ChangeComponentsComponent.java 20 * A game component that can swap other components in and out of its parent game object. The
111 /** Inserts and removes components added to the swap-in and swap-out list, respectively.
113 * @param parent The parent object to swap components on.
130 FixedSizeArray<GameComponent> swap = mComponentsToInsert; local
132 mComponentsToRemove = swap;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.promise/
swap.pass.cpp 14 // void swap(promise& other);
16 // template <class R> void swap(promise<R>& x, promise<R>& y);
30 p.swap(p0);
44 swap(p, p0);
58 p.swap(p0);
72 swap(p, p0);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/binary_heap_/
constructors_destructor_fn_imps.hpp 128 swap(PB_DS_CLASS_C_DEC& other) function in class:PB_DS_CLASS_C_DEC
135 std::swap((entry_cmp& )(*this), (entry_cmp& )other);
145 std::swap(m_a_entries, other.m_a_entries);
146 std::swap(m_size, other.m_size);
147 std::swap(m_actual_size, other.m_actual_size);
148 static_cast<resize_policy*>(this)->swap(other);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/eq_fn/
hash_eq_fn.hpp 81 swap(const PB_DS_CLASS_C_DEC& other);
92 swap(const PB_DS_CLASS_C_DEC& other) function in class:__gnu_pbds::detail::PB_DS_CLASS_C_DEC
93 { std::swap((Eq_Fn& )(*this), (Eq_Fn& )other); }
140 swap(const PB_DS_CLASS_C_DEC& other);
170 swap(const PB_DS_CLASS_C_DEC& other) function in class:__gnu_pbds::detail::PB_DS_CLASS_C_DEC
171 { std::swap((Eq_Fn& )(*this), (Eq_Fn& )(other)); }
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/resize_policy/
cc_hash_max_collision_check_resize_trigger_imp.hpp 177 swap(PB_DS_CLASS_C_DEC& other) function in class:PB_DS_CLASS_C_DEC
179 std::swap(m_load, other.m_load);
180 std::swap(m_size, other.m_size);
181 std::swap(m_num_col, other.m_num_col);
182 std::swap(m_max_col, other.m_max_col);
183 std::swap(m_resize_needed, other.m_resize_needed);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/binary_heap_/
constructors_destructor_fn_imps.hpp 128 swap(PB_DS_CLASS_C_DEC& other) function in class:PB_DS_CLASS_C_DEC
135 std::swap((entry_cmp& )(*this), (entry_cmp& )other);
145 std::swap(m_a_entries, other.m_a_entries);
146 std::swap(m_size, other.m_size);
147 std::swap(m_actual_size, other.m_actual_size);
148 static_cast<resize_policy*>(this)->swap(other);

Completed in 3656 milliseconds

1 2 3 4 56 7 8 91011>>