Home
last modified time | relevance | path

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

/external/dexmaker/dexmaker-mockito/src/main/java/com/android/dx/mockito/
DDexmakerMockMaker.java43 InvocationHandler invocationHandler = new InvocationHandlerAdapter(handler); in createMock() local
52 …T mock = (T) Proxy.newProxyInstance(typeToMock.getClassLoader(), classesToMock, invocationHandler); in createMock()
62 ProxyBuilder.setInvocationHandler(mock, invocationHandler); in createMock()
126 InvocationHandler invocationHandler = Proxy.getInvocationHandler(mock);
127 return invocationHandler instanceof InvocationHandlerAdapter
128 ? (InvocationHandlerAdapter) invocationHandler
133 InvocationHandler invocationHandler = ProxyBuilder.getInvocationHandler(mock);
134 return invocationHandler instanceof InvocationHandlerAdapter
135 ? (InvocationHandlerAdapter) invocationHandler
/external/guice/core/src/com/google/inject/internal/
DConstructionContext.java75 DelegatingInvocationHandler<T> invocationHandler = new DelegatingInvocationHandler<T>(); in createProxy() local
76 invocationHandlers.add(invocationHandler); in createProxy()
83 new Class[] { expectedType, CircularDependencyProxy.class }, invocationHandler)); in createProxy()
/external/dexmaker/
Dbug-8108255.patch11 - classesToMock, invocationHandler);
13 + invocationHandler);
/external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
DFactoryProvider.java336 InvocationHandler invocationHandler = new InvocationHandler() { in get() local
379 new Class[] { factoryRawType }, invocationHandler)); in get()
/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/stock/
DProxyBuilderTest.java771 InvocationHandler invocationHandler = new InvocationHandler() { in testImplementInterfaceCallingThroughConcreteClass() local
779 .handler(invocationHandler) in testImplementInterfaceCallingThroughConcreteClass()
796 InvocationHandler invocationHandler = new InvocationHandler() { in testImplementInterfaceCallingThroughInterface() local
805 .handler(invocationHandler) in testImplementInterfaceCallingThroughInterface()
/external/guava/guava-tests/test/com/google/common/collect/
DImmutableListTest.java587 InvocationHandler invocationHandler = new InvocationHandler() {
635 new Class[] {ConcurrentlyMutatedList.class}, invocationHandler);