HomeSort by relevance Sort by last modified time
    Searched refs:InvocationHandler (Results 1 - 25 of 373) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webview_support_interfaces/src/org/chromium/support_lib_boundary/
ServiceWorkerControllerBoundaryInterface.java 7 import java.lang.reflect.InvocationHandler;
13 /* ServiceWorkerWebSettings */ InvocationHandler getServiceWorkerWebSettings();
14 void setServiceWorkerClient(/* ServiceWorkerClient */ InvocationHandler client);
WebViewProviderFactoryBoundaryInterface.java 9 import java.lang.reflect.InvocationHandler;
14 /* SupportLibraryWebViewChromium */ InvocationHandler createWebView(WebView webview);
15 /* SupportLibWebkitToCompatConverter */ InvocationHandler getWebkitToCompatConverter();
16 /* StaticsAdapter */ InvocationHandler getStatics();
18 /* SupportLibraryServiceWorkerController */ InvocationHandler getServiceWorkerController();
WebViewProviderBoundaryInterface.java 7 import java.lang.reflect.InvocationHandler;
13 /* VisualStateCallback */ InvocationHandler callback);
WebkitToCompatConverterBoundaryInterface.java 9 import java.lang.reflect.InvocationHandler;
16 /* SupportLibraryWebSettings */ InvocationHandler convertSettings(WebSettings webSettings);
WebViewClientBoundaryInterface.java 11 import java.lang.reflect.InvocationHandler;
19 /* WebResourceError */ InvocationHandler error);
23 /* SafeBrowsingResponse */ InvocationHandler callback);
  /frameworks/support/webkit-codegen/src/test/resources/codegen-expected/
WebKitTypeAsMethodReturnBoundaryInterface.java 3 import java.lang.reflect.InvocationHandler;
6 InvocationHandler method();
8 InvocationHandler method2();
WebKitTypeAsMethodParameterBoundaryInterface.java 3 import java.lang.reflect.InvocationHandler;
6 void method(InvocationHandler webViewClient);
8 void methodX(InvocationHandler response);
  /external/easymock/src/org/easymock/internal/
IProxyFactory.java 18 import java.lang.reflect.InvocationHandler;
21 T createProxy(Class<T> toMock, InvocationHandler handler);
JavaProxyFactory.java 18 import java.lang.reflect.InvocationHandler;
23 public T createProxy(Class<T> toMock, InvocationHandler handler) {
MockInvocationHandler.java 19 import java.lang.reflect.InvocationHandler;
22 public final class MockInvocationHandler implements InvocationHandler, Serializable {
  /libcore/ojluni/src/main/java/java/lang/reflect/
InvocationHandler.java 29 * {@code InvocationHandler} is the interface implemented by
41 public interface InvocationHandler {
  /frameworks/support/webkit/src/main/java/androidx/webkit/internal/
WebkitToCompatConverter.java 33 import java.lang.reflect.InvocationHandler;
71 public InvocationHandler convertServiceWorkerSettings(
77 * Convert from an {@link InvocationHandler} representing an
83 /* SupportLibServiceWorkerSettings */ InvocationHandler serviceWorkerSettings) {
88 * Return a {@link InvocationHandler} linked to the given
92 InvocationHandler convertWebResourceError(WebResourceError webResourceError) {
98 * Convert from an {@link InvocationHandler} representing a {@link WebResourceErrorCompat} into
103 /* SupportLibWebResourceError */ InvocationHandler webResourceError) {
WebViewGlueCommunicator.java 27 import java.lang.reflect.InvocationHandler;
61 private static InvocationHandler fetchGlueProviderFactoryImpl() throws IllegalAccessException,
67 return (InvocationHandler) createProviderFactoryMethod.invoke(null);
75 InvocationHandler invocationHandler;
77 invocationHandler = fetchGlueProviderFactoryImpl();
93 WebViewProviderFactoryBoundaryInterface.class, invocationHandler));
  /art/test/044-proxy/src/
Clash.java 17 import java.lang.reflect.InvocationHandler;
28 InvocationHandler handler = new ClashInvocationHandler();
63 class ClashInvocationHandler implements InvocationHandler {
Clash2.java 17 import java.lang.reflect.InvocationHandler;
28 InvocationHandler handler = new Clash2InvocationHandler();
53 class Clash2InvocationHandler implements InvocationHandler {
Clash3.java 17 import java.lang.reflect.InvocationHandler;
28 InvocationHandler handler = new Clash3InvocationHandler();
68 class Clash3InvocationHandler implements InvocationHandler {
ConstructorProxy.java 18 import java.lang.reflect.InvocationHandler;
25 class ConstructorProxy implements InvocationHandler {
40 Constructor<?> constructor = proxyClass.getConstructor(InvocationHandler.class);
NativeProxy.java 18 import java.lang.reflect.InvocationHandler;
52 public static class NativeInvocationHandler implements InvocationHandler {
Clash4.java 17 import java.lang.reflect.InvocationHandler;
28 InvocationHandler handler = new Clash4InvocationHandler();
70 class Clash4InvocationHandler implements InvocationHandler {
OOMEOnDispatch.java 17 import java.lang.reflect.InvocationHandler;
25 public class OOMEOnDispatch implements InvocationHandler {
30 InvocationHandler handler = new OOMEOnDispatch();
  /art/test/676-proxy-jit-at-first-use/src/
Main.java 17 import java.lang.reflect.InvocationHandler;
34 class Handler implements InvocationHandler {
  /external/guice/core/src/com/google/inject/internal/
DelegatingInvocationHandler.java 22 import java.lang.reflect.InvocationHandler;
26 class DelegatingInvocationHandler<T> implements InvocationHandler {
  /external/webview_support_interfaces/src/org/chromium/support_lib_boundary/util/
BoundaryInterfaceReflectionUtil.java 9 import java.lang.reflect.InvocationHandler;
43 * to the {@link InvocationHandler} invocationHandler.
45 public static <T> T castToSuppLibClass(Class<T> clazz, InvocationHandler invocationHandler) {
48 new Class[] {clazz}, invocationHandler));
52 * Create an {@link java.lang.reflect.InvocationHandler} that delegates method calls to
58 public static InvocationHandler createInvocationHandlerFor(final Object delegate) {
60 return new InvocationHandler() {
  /external/guava/guava-tests/test/com/google/common/reflect/
ReflectionTest.java 23 import java.lang.reflect.InvocationHandler;
51 private static final InvocationHandler X_RETURNER = new InvocationHandler() {
  /prebuilts/jdk/jdk8/darwin-x86/sample/jmx/jmx-scandir/test/com/sun/jmx/examples/scandir/
TestUtils.java 43 import java.lang.reflect.InvocationHandler;
77 final InvocationHandler handler =
97 final InvocationHandler handler =

Completed in 911 milliseconds

1 2 3 4 5 6 7 8 91011>>