/art/libartbase/base/ |
D | hash_set.h | 266 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) { in swap() function 414 using std::swap; in swap() 415 swap(allocfn_, other.allocfn_); in swap() 416 swap(hashfn_, other.hashfn_); in swap() 417 swap(emptyfn_, other.emptyfn_); in swap() 418 swap(pred_, other.pred_); in swap() 419 std::swap(data_, other.data_); in swap() 420 std::swap(num_buckets_, other.num_buckets_); in swap() [all …]
|
D | dchecked_vector.h | 147 void swap(dchecked_vector& other) { Base::swap(other); } in swap() function 196 void swap(dchecked_vector<T, Alloc>& lhs, dchecked_vector<T, Alloc>& rhs) { in swap() function 197 lhs.swap(rhs); in swap()
|
D | safe_map.h | 70 void swap(Self& other) { map_.swap(other.map_); } in swap() function
|
D | variant_map.h | 375 storage_map_.swap(other.storage_map_);
|
D | hash_set_test.cc | 152 std::swap(hash_seta, hash_setb); in TEST_F()
|
/art/test/439-swap-double/ |
D | info.txt | 1 Test for the optimizing compiler's parallel swap support in
|
/art/compiler/utils/ |
D | intrusive_forward_list.h | 158 tmp.swap(*this); 186 tmp.swap(*this); in assign() 218 void swap(IntrusiveForwardList& other) { in swap() function 219 std::swap(first_.next_hook, other.first_.next_hook); in swap() 373 reversed.swap(*this); in reverse() 401 void swap(IntrusiveForwardList<T, HookTraits>& lhs, IntrusiveForwardList<T, HookTraits>& rhs) { in swap() function 402 lhs.swap(rhs); in swap()
|
D | assembler.h | 334 result.first.swap(opcodes_); in ReleaseStreamAndPrepareForDelayedAdvancePC() 335 result.second.swap(delayed_advance_pcs_); in ReleaseStreamAndPrepareForDelayedAdvancePC()
|
/art/runtime/gc/space/ |
D | space.cc | 101 std::swap(live_bitmap, mark_bitmap); in Sweep() 136 live_bitmap_.swap(mark_bitmap_); in SwapBitmaps()
|
D | large_object_space_test.cc | 78 std::swap(requests[j], requests[test_rand(&rand_seed) % requests.size()]); in LargeObjectTest()
|
D | large_object_space.cc | 107 live_bitmap_.swap(mark_bitmap_); in SwapBitmaps() 600 std::swap(live_bitmap, mark_bitmap); in Sweep()
|
/art/runtime/base/ |
D | timing_logger.h | 124 std::swap(data_, other.data_); in TimingData() 127 std::swap(data_, other.data_);
|
/art/test/046-reflect/ |
D | expected.txt | 99 private static void java.util.Collections.swap(java.lang.Object[],int,int) accessible=false 100 private static void java.util.Collections.swap(java.lang.Object[],int,int) accessible=true
|
/art/runtime/gc/ |
D | task_processor_test.cc | 130 std::swap(orderings[i], orderings[(i * 87654231 + 12345) % orderings.size()]); in TEST_F()
|
/art/runtime/ |
D | common_runtime_test.cc | 111 std::swap(filename_, other.filename_); in operator =() 112 std::swap(file_, other.file_); in operator =()
|
D | runtime.cc | 1486 boot_class_path.swap(*runtime_options.GetOrDefault(Opt::BootClassPathDexList)); in Init()
|
D | thread.cc | 2807 lock_objects_[lock_objects_.size() - 1].swap(frame_lock_objects_); in CreateAnnotatedStackTrace()
|
/art/runtime/gc/collector/ |
D | mark_sweep.cc | 1242 std::swap(live_bitmap, mark_bitmap); in SweepArray() 1282 std::swap(large_live_objects, large_mark_objects); in SweepArray()
|
/art/compiler/optimizing/ |
D | code_generator_arm_vixl.cc | 1807 std::swap(cond, opposite); in GenerateLongTestConstant() 1928 std::swap(cond, opposite); in GenerateLongTest() 1969 std::swap(left, right); in GenerateLongTest() 1997 std::swap(cond, opposite); in GenerateTest() 2068 std::swap(left_low, left_high); in GenerateEqualLong() 2069 std::swap(right_low, right_high); in GenerateEqualLong() 3222 std::swap(in, temp); in GenerateConditionWithZero() 3341 std::swap(left, right); in HandleCondition() 4787 std::swap(in_reg_hi, in_reg_lo); in HandleLongRotate()
|
D | instruction_builder.cc | 704 std::swap(first, second); in Binop_22s() 715 std::swap(first, second); in Binop_22b()
|
D | induction_var_analysis.cc | 52 scc->swap(*new_scc); in RotateEntryPhiFirst()
|
D | register_allocator_graph_color.cc | 1729 std::swap(from, into); in Coalesce()
|
D | instruction_simplifier.cc | 911 std::swap(true_value, false_value); in VisitSelect()
|
D | intrinsics_arm64.cc | 1608 std::swap(str, arg); // Make sure the const string is in `str`. in VisitStringEquals()
|
D | intrinsics_arm_vixl.cc | 1850 std::swap(str, arg); // Make sure the const string is in `str`. in VisitStringEquals()
|