Home
last modified time | relevance | path

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

/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/stock/
DProxyBuilderTest.java337 return ProxyBuilder.callSuper(proxy, method, args); in invoke()
494 return ProxyBuilder.callSuper(proxy, method, args); in testSometimesDelegateToSuper()
510 return ProxyBuilder.callSuper(o, method, objects); in testCallSuperThrows()
732 ProxyBuilder.callSuper(declaresInterface, Callable.class.getMethod("call")); in testAbstractClassWithUndeclaredInterfaceMethod()
762 ProxyBuilder.callSuper(simpleClass, Callable.class.getMethod("call")); in testCallSuperWithInterfaceMethod()
773 assertEquals("a", ProxyBuilder.callSuper(o, method, objects)); in testImplementInterfaceCallingThroughConcreteClass()
782 assertEquals("a", ProxyBuilder.callSuper( in testImplementInterfaceCallingThroughConcreteClass()
799 return ProxyBuilder.callSuper(o, method, objects); in testImplementInterfaceCallingThroughInterface()
813 assertEquals("a", ProxyBuilder.callSuper(proxy, Callable.class.getMethod("call"))); in testImplementInterfaceCallingThroughInterface()
/external/javassist/src/main/javassist/compiler/
DJavac.java218 boolean callSuper = false; in compileBody()
220 callSuper = !((CtConstructor)method).isClassInitializer(); in compileBody()
222 gen.atMethodBody(s, callSuper, isVoid); in compileBody()
/external/dexmaker/dexmaker-mockito/src/main/java/com/android/dx/mockito/
DInvocationHandlerAdapter.java115 return ProxyBuilder.callSuper(target, method, arguments); in invoke()
/external/dexmaker/dexmaker/src/main/java/com/android/dx/stock/
DProxyBuilder.java557 public static Object callSuper(Object proxy, Method method, Object... args) throws Throwable { in callSuper() method in ProxyBuilder