Searched refs:ctMethod (Results 1 - 1 of 1) sorted by relevance

/external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
H A DAndroidTranslator.java246 for (CtMethod ctMethod : ctClass.getDeclaredMethods()) {
247 fixMethod(ctClass, ctMethod, true);
258 private String describe(CtMethod ctMethod) throws NotFoundException { argument
259 return Modifier.toString(ctMethod.getModifiers()) + " " + ctMethod.getReturnType().getSimpleName() + " " + ctMethod.getLongName();
262 private void fixMethod(CtClass ctClass, CtMethod ctMethod, boolean wasFoundInClass) throws NotFoundException { argument
263 String describeBefore = describe(ctMethod);
265 CtClass declaringClass = ctMethod.getDeclaringClass();
266 int originalModifiers = ctMethod
330 makeNewMethod(CtClass ctClass, CtMethod ctMethod, CtClass returnCtClass, String methodName, CtClass[] paramTypes, String methodBody) argument
357 generateMethodBody(CtClass ctClass, CtMethod ctMethod, boolean wasNative, boolean wasAbstract, CtClass returnCtClass, Type returnType, boolean aStatic, boolean shouldGenerateCallToSuper) argument
371 generateMethodBody(CtClass ctClass, CtMethod ctMethod, CtClass returnCtClass, Type returnType, boolean isStatic, boolean shouldGenerateCallToSuper) argument
429 appendParamTypeArray(StringBuilder buf, CtMethod ctMethod) argument
446 appendParamArray(StringBuilder buf, CtMethod ctMethod) argument
[all...]

Completed in 45 milliseconds