Searched refs:superMethod (Results 1 – 4 of 4) sorted by relevance
/external/dexmaker/src/main/java/com/google/dexmaker/stock/ |
D | ProxyBuilder.java | 415 MethodId<T, ?> superMethod = superclassType.getMethod(resultType, name, argTypes); in generateCodeForAllMethods() local 471 code.invokeSuper(superMethod, null, localThis, superArgs2); in generateCodeForAllMethods() 474 invokeSuper(superMethod, code, localThis, superArgs2, superResult2); in generateCodeForAllMethods() 496 superCode.invokeSuper(superMethod, null, superThis, superArgs); in generateCodeForAllMethods() 500 invokeSuper(superMethod, superCode, superThis, superArgs, superResult); in generateCodeForAllMethods() 507 private static void invokeSuper(MethodId superMethod, Code superCode, in invokeSuper() argument 509 superCode.invokeSuper(superMethod, superResult, superThis, superArgs); in invokeSuper()
|
/external/javassist/src/main/javassist/util/proxy/ |
D | RuntimeSupport.java | 48 public static void find2Methods(Object self, String superMethod, in find2Methods() argument 56 methods[index] = findSuperMethod(self, superMethod, desc); in find2Methods()
|
D | ProxyFactory.java | 1282 private static void callFind2Methods(Bytecode code, String superMethod, String thisMethod, in callFind2Methods() argument 1289 code.addLdc(superMethod); in callFind2Methods()
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/ |
D | ClassProto.java | 628 Method superMethod = vtable.get(i); 629 if (methodSignaturesMatch(superMethod, virtualMethod)) { 630 if (classPath.getApi() < 17 || canAccess(superMethod)) {
|