Searched refs:methodMap (Results 1 – 4 of 4) sorted by relevance
/external/proguard/src/proguard/retrace/ |
D | ReTrace.java | 447 Map methodMap = (Map)classMethodMap.get(className); in originalMethodName() local 448 if (methodMap != null) in originalMethodName() 451 Set methodSet = (Set)methodMap.get(obfuscatedMethodName); in originalMethodName() 606 Map methodMap = (Map)classMethodMap.get(className); in processMethodMapping() local 607 if (methodMap == null) in processMethodMapping() 609 methodMap = new HashMap(); in processMethodMapping() 610 classMethodMap.put(className, methodMap); in processMethodMapping() 614 Set methodSet = (Set)methodMap.get(newMethodName); in processMethodMapping() 618 methodMap.put(newMethodName, methodSet); in processMethodMapping()
|
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/ |
D | InvokableTypeImpl.java | 156 final void addVisibleMethods(Map<String, Method> methodMap, Set<InterfaceType> seenInterfaces) { in addVisibleMethods() argument 166 interfaze.addVisibleMethods(methodMap, seenInterfaces); in addVisibleMethods() 172 clazz.addVisibleMethods(methodMap, seenInterfaces); in addVisibleMethods() 174 addToMethodMap(methodMap, methods()); in addVisibleMethods()
|
D | ReferenceTypeImpl.java | 509 void addToMethodMap(Map<String, Method> methodMap, List<Method> methodList) { in addToMethodMap() argument 511 methodMap.put(method.name().concat(method.signature()), method); in addToMethodMap() 514 … abstract void addVisibleMethods(Map<String, Method> methodMap, Set<InterfaceType> seenInterfaces); in addVisibleMethods() argument
|
/external/auto/common/src/main/java/com/google/auto/common/ |
D | MoreElements.java | 416 SetMultimap<String, ExecutableElement> methodMap = LinkedHashMultimap.create(); 417 getAllMethods(type, methodMap); 425 for (Collection<ExecutableElement> methods : methodMap.asMap().values()) { 438 Set<ExecutableElement> methods = new LinkedHashSet<ExecutableElement>(methodMap.values());
|