Home
last modified time | relevance | path

Searched refs:to_add (Results 1 – 3 of 3) sorted by relevance

/art/compiler/optimizing/
Dnodes_test.cc108 HInstruction* to_add = new (GetAllocator()) HNullCheck(parameter, 0); in TEST_F() local
109 entry->AddInstruction(to_add); in TEST_F()
/art/openjdkjvmti/
Devents.cc204 ArtJvmtiEvent to_add = caps_added ? ArtJvmtiEvent::kClassFileLoadHookRetransformable in HandleChangedCapabilities() local
207 CHECK(!global_event_mask.Test(to_add)); in HandleChangedCapabilities()
209 global_event_mask.Set(to_add, true); in HandleChangedCapabilities()
213 CHECK(!unioned_thread_event_mask.Test(to_add)); in HandleChangedCapabilities()
215 unioned_thread_event_mask.Set(to_add, true); in HandleChangedCapabilities()
219 CHECK(!thread_mask.second.Test(to_add)); in HandleChangedCapabilities()
221 thread_mask.second.Set(to_add, true); in HandleChangedCapabilities()
/art/runtime/
Dclass_linker.cc7389 std::vector<ObjPtr<mirror::Class>> to_add; in SetupInterfaceLookupTable() local
7393 to_add.push_back(interface); in SetupInterfaceLookupTable()
7396 new_ifcount = FillIfTable(iftable.Get(), super_ifcount, std::move(to_add)); in SetupInterfaceLookupTable()