Home
last modified time | relevance | path

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

/external/javassist/src/main/javassist/expr/
DExpr.java48 MethodInfo thisMethod; field in Expr
61 thisMethod = m; in Expr()
73 return thisMethod.getConstPool(); in getConstPool()
92 return (thisMethod.getAccessFlags() & AccessFlag.STATIC) != 0; in withinStatic()
99 MethodInfo mi = thisMethod; in where()
115 if (thisMethod.getName().equals(cb[i].getMethodInfo2().getName()) in where()
116 && thisMethod.getDescriptor() in where()
133 ConstPool cp = thisMethod.getConstPool(); in mayThrow()
136 CodeAttribute ca = thisMethod.getCodeAttribute(); in mayThrow()
154 ExceptionsAttribute ea = thisMethod.getExceptionsAttribute(); in mayThrow()
[all …]
/external/javassist/src/main/javassist/util/proxy/
DRuntimeSupport.java49 String thisMethod, int index, in find2Methods() argument
54 methods[index + 1] = thisMethod == null ? null in find2Methods()
55 : findMethod(self, thisMethod, desc); in find2Methods()
DMethodHandler.java46 Object invoke(Object self, Method thisMethod, Method proceed, in invoke() argument
DProxyFactory.java1282 private static void callFind2Methods(Bytecode code, String superMethod, String thisMethod, in callFind2Methods() argument
1290 if (thisMethod == null) in callFind2Methods()
1293 code.addLdc(thisMethod); in callFind2Methods()
/external/javassist/src/main/javassist/compiler/
DMemberCodeGen.java29 protected MethodInfo thisMethod; field in MemberCodeGen
37 thisMethod = null; in MemberCodeGen()
56 thisMethod = m.getMethodInfo2(); in setThisMethod()
58 typeChecker.setThisMethod(thisMethod); in setThisMethod()
561 found = resolver.lookupMethod(targetClass, thisClass, thisMethod, in atMethodCallCore()
DTypeChecker.java41 protected MethodInfo thisMethod; field in TypeChecker
46 thisMethod = null; in TypeChecker()
103 thisMethod = m; in setThisMethod()
705 = resolver.lookupMethod(targetClass, thisClass, thisMethod, in atMethodCallCore()
/external/javassist/src/test/test/javassist/proxy/
DProxySerializationTest.java108 …public Object invoke(Object self, Method thisMethod, Method proceed, Object[] args) throws Throwab… in invoke() argument
/external/dexmaker/src/main/java/com/google/dexmaker/stock/
DProxyBuilder.java427 Local<Method> thisMethod = code.newLocal(methodType); in generateCodeForAllMethods() local
440 code.aget(thisMethod, methodArray, methodIndex); in generateCodeForAllMethods()
459 localThis, thisMethod, args); in generateCodeForAllMethods()