Home | History | Annotate | Download | only in inline

Lines Matching refs:MethodDesc

157     private Class<?> getClassMethodWasCalledOn(MethodDesc methodDesc) throws ClassNotFoundException,
159 Class<?> classDeclaringMethod = classForTypeName(methodDesc.className);
167 || Modifier.isFinal(classDeclaringMethod.getDeclaredMethod(methodDesc.methodName,
168 methodDesc.methodParamTypes).getModifiers())) {
176 methodDesc.methodName, methodDesc.methodParamTypes)) {
200 MethodDesc methodDesc = new MethodDesc(methodWithTypeAndSignature);
202 Class clazz = getClassMethodWasCalledOn(methodDesc);
212 return Class.forName(methodDesc.className).getDeclaredMethod(methodDesc.methodName,
213 methodDesc.methodParamTypes);
227 MethodDesc methodDesc = new MethodDesc((String) methodDescStr);
228 Class clazz = getClassMethodWasCalledOn(methodDesc);
270 private static class MethodDesc {
275 private MethodDesc(String methodWithTypeAndSignature) throws ClassNotFoundException {