Searched refs:adapter (Results 1 – 2 of 2) sorted by relevance
/art/test/957-methodhandle-transforms/src/ |
D | Main.java | 167 MethodHandle adapter = MethodHandles.catchException(target, IllegalArgumentException.class, in testCatchException() local 174 returnVal = (String) adapter.invoke("foo", 42, null); in testCatchException() 176 returnVal = (String) adapter.invokeExact("foo", 42l, (String) null); in testCatchException() 181 returnVal = (String) adapter.invoke("foo", 42, "exceptionMessage"); in testCatchException() 183 returnVal = (String) adapter.invokeExact("foo", 42l, "exceptionMessage"); in testCatchException() 190 adapter = MethodHandles.catchException(target, IllegalArgumentException.class, handler); in testCatchException() 192 returnVal = (String) adapter.invoke("foo", 42, "exceptionMessage"); in testCatchException() 194 returnVal = (String) adapter.invokeExact("foo", 42l, "exceptionMessage"); in testCatchException() 202 adapter = MethodHandles.catchException(target, IllegalArgumentException.class, handler); in testCatchException() 204 returnVal = (String) adapter.invoke("foo", 42, "exceptionMessage"); in testCatchException() [all …]
|
/art/compiler/optimizing/ |
D | register_allocator_graph_color.cc | 243 ScopedArenaVector<InterferenceNode*>::allocator_type adapter(storage->get_allocator()); in AddInterference() local 244 storage->emplace_back(adapter); in AddInterference() 296 ScopedArenaVector<CoalesceOpportunity*>::allocator_type adapter(storage->get_allocator()); in AddCoalesceOpportunity() local 297 storage->emplace_back(adapter); in AddCoalesceOpportunity() 1919 ScopedArenaAllocatorAdapter<void> adapter = allocator.Adapter(kArenaAllocRegisterAllocator); in AllocateSpillSlots() local 1920 ScopedArenaVector<LiveInterval*> double_intervals(adapter); in AllocateSpillSlots() 1921 ScopedArenaVector<LiveInterval*> long_intervals(adapter); in AllocateSpillSlots() 1922 ScopedArenaVector<LiveInterval*> float_intervals(adapter); in AllocateSpillSlots() 1923 ScopedArenaVector<LiveInterval*> int_intervals(adapter); in AllocateSpillSlots() 1926 ScopedArenaSet<LiveInterval*> seen(adapter); in AllocateSpillSlots()
|