Home
last modified time | relevance | path

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

/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/bytecode/
DAndroidTranslator.java246 for (CtMethod ctMethod : ctClass.getDeclaredMethods()) { in fixMethods()
247 fixMethod(ctClass, ctMethod, true); in fixMethods()
258 private String describe(CtMethod ctMethod) throws NotFoundException { in describe() argument
259 …return Modifier.toString(ctMethod.getModifiers()) + " " + ctMethod.getReturnType().getSimpleName()… in describe()
262 …private void fixMethod(CtClass ctClass, CtMethod ctMethod, boolean wasFoundInClass) throws NotFoun… in fixMethod() argument
263 String describeBefore = describe(ctMethod); in fixMethod()
265 CtClass declaringClass = ctMethod.getDeclaringClass(); in fixMethod()
266 int originalModifiers = ctMethod.getModifiers(); in fixMethod()
285 ctMethod.setModifiers(newModifiers); in fixMethod()
288 CtClass returnCtClass = ctMethod.getReturnType(); in fixMethod()
[all …]