HomeSort by relevance Sort by last modified time
    Searched defs:invoke (Results 176 - 200 of 1057) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
ExceptionCaughtDebuggee.java 87 // We use java reflection to invoke the method throwing the exception through native.
90 method.invoke(this);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/debuggee/
ProxyDebuggee.java 51 public Object invoke(Object proxy, Method method, Object[] args) method in class:ProxyDebuggee.ProxyInvocationHandler
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
example-function.cpp 12 virtual R invoke(Args...) = 0;
20 R invoke(Args... args) { return f(args...); } function in class:functor_invoker
64 return invoker->invoke(args...);
  /external/clang/test/CodeGen/
blockstret.c 68 void (*invoke)(void *, ...); member in struct:block_layout_abi
  /external/dexmaker/dexmaker-mockito/src/main/java/com/android/dx/mockito/
InvocationHandlerAdapter.java 43 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { method in class:InvocationHandlerAdapter
114 public Object invoke(Object target, Object[] arguments) throws Throwable { method in class:InvocationHandlerAdapter.ProxiedMethod
  /external/easymock/src/org/easymock/internal/
IMocksControlState.java 22 Object invoke(Invocation invocation) throws Throwable; method in interface:IMocksControlState
ObjectMethodsFilter.java 61 public final Object invoke(Object proxy, Method method, Object[] args) method in class:ObjectMethodsFilter
72 return delegate.invoke(proxy, method, args);
  /external/guava/guava/src/com/google/common/eventbus/
EventSubscriber.java 74 method.invoke(target, new Object[] { event });
  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingTestCase.java 67 public Object invoke(Object proxy, Method method, Object[] args)
124 @Override public Object invoke(Object proxy, Method method,
155 method.invoke(object, parameters);
  /external/guice/extensions/servlet/test/com/google/inject/servlet/
ServletTestUtils.java 32 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { method in class:ServletTestUtils.ThrowingInvocationHandler
102 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { method in class:FakeHttpSessionHandler
  /external/jarjar/src/main/com/tonicsystems/jarjar/
MainUtil.java 37 method.invoke(main, bindParameters(method, remaining));
  /external/javassist/src/main/javassist/util/proxy/
RuntimeSupport.java 33 public Object invoke(Object self, Method m, method in class:RuntimeSupport.DefaultMethodHandler
37 return proceed.invoke(self, args);
  /external/jline/src/src/main/java/jline/
ConsoleRunner.java 39 // invoke the main() method
75 invoke(null, new Object[] { argList.toArray(new String[0]) }); method
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/
OptionalMethodTest.java 148 public void invoke() throws Exception { method in class:OptionalMethodTest
151 assertEquals("string", STRING_METHOD_RETURNS_STRING.invoke(base));
152 assertEquals("string", STRING_METHOD_RETURNS_ANY.invoke(base));
154 assertNull(VOID_METHOD_RETURNS_ANY.invoke(base));
155 assertNull(VOID_METHOD_RETURNS_VOID.invoke(base));
164 assertEquals("string", STRING_METHOD_RETURNS_STRING.invoke(subClass1));
165 assertEquals("string", STRING_METHOD_RETURNS_ANY.invoke(subClass1));
167 assertNull(VOID_METHOD_RETURNS_ANY.invoke(subClass1));
168 assertNull(VOID_METHOD_RETURNS_VOID.invoke(subClass1));
169 assertEquals("subclassMethod1", SUBCLASS_METHOD_RETURNS_ANY.invoke(subClass1))
    [all...]
  /external/owasp/sanitizer/src/tests/org/owasp/html/
ExamplesTest.java 61 // Invoke with no arguments to sanitize empty input stream to output.
62 main.invoke(null, new Object[] { new String[0] });
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
CursorWrapperTest.java 44 method.invoke(cursorWrapper, params);
45 method.invoke(verify(mockCursor, times(1)), params);
  /external/sl4a/Common/src/com/googlecode/android_scripting/jsonrpc/
RpcReceiverManager.java 86 public Object invoke(Class<? extends RpcReceiver> clazz, Method method, Object[] args) method in class:RpcReceiverManager
89 return method.invoke(object, args);
  /external/testng/src/main/java/org/testng/internal/
FactoryMethod.java 68 public Object[] invoke() { method in class:FactoryMethod
90 testInstances = (Object[]) getMethod().invoke(m_instance, parameters);
  /frameworks/base/legacy-test/src/junit/framework/
TestCase.java 168 runMethod.invoke(this);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
MediaPlayerInvokeTest.java 34 // Tests for the invoke method in the MediaPlayer.
68 mPlayer.invoke(request, reply);
  /frameworks/support/compat/java/android/support/v4/app/
BundleCompat.java 54 return (IBinder) sGetIBinderMethod.invoke(bundle, key);
57 Log.i(TAG, "Failed to invoke getIBinder via reflection", e);
78 sPutIBinderMethod.invoke(bundle, key, binder);
81 Log.i(TAG, "Failed to invoke putIBinder via reflection", e);
  /frameworks/support/transition/api19/android/support/transition/
ViewUtilsApi19.java 42 sSetTransitionAlphaMethod.invoke(view, alpha);
58 return (Float) sGetTransitionAlphaMethod.invoke(view);
  /frameworks/support/transition/api21/android/support/transition/
GhostViewApi21.java 49 (View) sAddGhostMethod.invoke(null, view, viewGroup, matrix));
64 sRemoveGhostMethod.invoke(null, view);
  /libcore/jsr166-tests/src/test/java/jsr166/
ForkJoinTaskTest.java 66 assertNull(pool.invoke(a));
389 * invoke returns when task completes normally.
397 assertNull(f.invoke());
514 * invoke task throws exception when task completes abnormally
521 f.invoke();
618 * invoke task throws exception when task cancelled
626 f.invoke();
727 assertNull(a.invoke());
749 assertNull(a.invoke());
761 assertNull(a.invoke());
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/invoke/
CallSitesTest.java 17 package libcore.java.lang.invoke;
21 import java.lang.invoke.CallSite;
22 import java.lang.invoke.ConstantCallSite;
23 import java.lang.invoke.MethodHandle;
24 import java.lang.invoke.MethodHandles;
25 import java.lang.invoke.MethodHandles.Lookup;
26 import java.lang.invoke.MethodType;
27 import java.lang.invoke.MutableCallSite;
28 import java.lang.invoke.VolatileCallSite;
29 import java.lang.invoke.WrongMethodTypeException
    [all...]

Completed in 840 milliseconds

1 2 3 4 5 6 78 91011>>