Home
last modified time | relevance | path

Searched refs:adapter (Results 1 – 2 of 2) sorted by relevance

/art/test/957-methodhandle-transforms/src/
DMain.java168 MethodHandle adapter = MethodHandles.catchException(target, IllegalArgumentException.class, in testCatchException() local
175 returnVal = (String) adapter.invoke("foo", 42, null); in testCatchException()
177 returnVal = (String) adapter.invokeExact("foo", 42l, (String) null); in testCatchException()
182 returnVal = (String) adapter.invoke("foo", 42, "exceptionMessage"); in testCatchException()
184 returnVal = (String) adapter.invokeExact("foo", 42l, "exceptionMessage"); in testCatchException()
191 adapter = MethodHandles.catchException(target, IllegalArgumentException.class, handler); in testCatchException()
193 returnVal = (String) adapter.invoke("foo", 42, "exceptionMessage"); in testCatchException()
195 returnVal = (String) adapter.invokeExact("foo", 42l, "exceptionMessage"); in testCatchException()
203 adapter = MethodHandles.catchException(target, IllegalArgumentException.class, handler); in testCatchException()
205 returnVal = (String) adapter.invoke("foo", 42, "exceptionMessage"); in testCatchException()
[all …]
/art/compiler/optimizing/
Dregister_allocator_graph_color.cc243 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()
1928 ScopedArenaAllocatorAdapter<void> adapter = allocator.Adapter(kArenaAllocRegisterAllocator); in AllocateSpillSlots() local
1929 ScopedArenaVector<LiveInterval*> double_intervals(adapter); in AllocateSpillSlots()
1930 ScopedArenaVector<LiveInterval*> long_intervals(adapter); in AllocateSpillSlots()
1931 ScopedArenaVector<LiveInterval*> float_intervals(adapter); in AllocateSpillSlots()
1932 ScopedArenaVector<LiveInterval*> int_intervals(adapter); in AllocateSpillSlots()
1935 ScopedArenaSet<LiveInterval*> seen(adapter); in AllocateSpillSlots()