Home
last modified time | relevance | path

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

/external/dexmaker/dexmaker/src/main/java/com/android/dx/stock/
DProxyBuilder.java633 Set<MethodSetEntry> methodsToProxy = new HashSet<>(); in getMethodsToProxyRecursive()
634 Set<MethodSetEntry> seenFinalMethods = new HashSet<>(); in getMethodsToProxyRecursive()
653 for (MethodSetEntry entry : methodsToProxy) { in getMethodsToProxyRecursive()
669 private void getMethodsToProxy(Set<MethodSetEntry> sink, Set<MethodSetEntry> seenFinalMethods, in getMethodsToProxy()
678 MethodSetEntry entry = new MethodSetEntry(method); in getMethodsToProxy()
709 MethodSetEntry entry = new MethodSetEntry(method); in getMethodsToProxy()
823 private static class MethodSetEntry { class in ProxyBuilder
829 public MethodSetEntry(Method method) { in MethodSetEntry() method in ProxyBuilder.MethodSetEntry
838 if (o instanceof MethodSetEntry) { in equals()
839 MethodSetEntry other = (MethodSetEntry) o; in equals()