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

/art/libartbase/base/
H A Ddchecked_vector.h146 // Modifiers: swap(). Swap only with another dchecked_vector instead of a plain vector.
147 void swap(dchecked_vector& other) { Base::swap(other); } function in class:art::dchecked_vector
194 // Non-member swap(), found by argument-dependent lookup for an unqualified call.
196 void swap(dchecked_vector<T, Alloc>& lhs, dchecked_vector<T, Alloc>& rhs) {
197 lhs.swap(rhs);
H A Dsafe_map.h70 void swap(Self& other) { map_.swap(other.map_); } function in class:art::SafeMap
H A Dhash_set.h266 HashSet(std::move(other)).swap(*this); // NOLINT [runtime/explicit] [5]
271 HashSet(other).swap(*this); // NOLINT(runtime/explicit) - a case of lint gone mad.
412 void swap(HashSet& other) { function in class:art::HashSet
413 // Use argument-dependent lookup with fall-back to std::swap() for function objects.
414 using std::swap;
415 swap(allocfn_, other.allocfn_);
416 swap(hashfn_, other.hashfn_);
417 swap(emptyfn_, other.emptyfn_);
418 swap(pred_, other.pred_);
419 std::swap(data
686 void swap(HashSet<T, EmptyFn, HashFn, Pred, Alloc>& lhs, function in namespace:art
[all...]
/art/compiler/utils/
H A Dintrusive_forward_list.h158 tmp.swap(*this);
186 tmp.swap(*this);
218 void swap(IntrusiveForwardList& other) { function in class:art::IntrusiveForwardList
219 std::swap(first_.next_hook, other.first_.next_hook);
373 reversed.swap(*this);
401 void swap(IntrusiveForwardList<T, HookTraits>& lhs, IntrusiveForwardList<T, HookTraits>& rhs) { function in namespace:art
402 lhs.swap(rhs);

Completed in 894 milliseconds