Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/lang/invoke/
DDirectMethodHandle.java91 return ACCESSOR_IMPLEMENTATIONS.get(new MethodKey(name, parameters)); in getImplementation()
94 private static final Map<MethodKey, Method> ACCESSOR_IMPLEMENTATIONS;
100 HashMap<MethodKey, Method> accessorMethods = HashMap.newHashMap(4 * 9 * 2);
104 new MethodKey(m.getName(), Arrays.asList(m.getParameterTypes())), m); in accessorMethods.put()
110 private static final class MethodKey { class in DirectMethodHandle
114 MethodKey(String name, List<Class<?>> arguments) { in MethodKey() method in DirectMethodHandle.MethodKey
126 if (obj instanceof MethodKey methodKey) { in equals()