HomeSort by relevance Sort by last modified time
    Searched defs:invoker (Results 1 - 15 of 15) sorted by null

  /external/grpc-grpc/src/csharp/Grpc.Core/Interceptors/
InterceptingCallInvoker.cs 30 readonly CallInvoker invoker; field in class:Grpc.Core.Interceptors.InterceptingCallInvoker
35 /// with the given underlying invoker and interceptor instances.
37 public InterceptingCallInvoker(CallInvoker invoker, Interceptor interceptor)
39 this.invoker = GrpcPreconditions.CheckNotNull(invoker, nameof(invoker));
51 (req, ctx) => invoker.BlockingUnaryCall(ctx.Method, ctx.Host, ctx.Options, req));
62 (req, ctx) => invoker.AsyncUnaryCall(ctx.Method, ctx.Host, ctx.Options, req));
73 (req, ctx) => invoker.AsyncServerStreamingCall(ctx.Method, ctx.Host, ctx.Options, req));
83 ctx => invoker.AsyncClientStreamingCall(ctx.Method, ctx.Host, ctx.Options))
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
example-function.cpp 31 function() : invoker (0) { }
32 function(const function& other) : invoker(0) {
33 if (other.invoker)
34 invoker = other.invoker->clone();
37 template<typename F> function(const F& f) : invoker(0) {
38 invoker = new functor_invoker<F, R, Args...>(f);
42 if (invoker)
43 delete invoker;
58 invoker_base<R, Args...>* tmp = invoker;
68 invoker_base<R, Args...>* invoker; member in class:function
    [all...]
  /art/test/713-varhandle-invokers/src/
Main.java 313 // Exact invoker of an accessor having the form:
387 // Invoker of an accessor having the form:
389 MethodHandle invoker = local
399 // Callsite that is an exact match with invoker.type()
402 invoker.invoke(
411 // Callsite that is convertible match to invoker.type()
412 old = (float) invoker.invoke(floatsArrayVarHandle, floatsArray, 2, 8.0f, 16.0f);
416 // Callsites that are not convertible to invoker.type().
419 old = (float) invoker.invoke(floatsArrayVarHandle, floatsArray, 2, (short) 4, 8.0f);
426 old = (float) invoker.invoke(floatsArrayVarHandle, floatsArray, 2, 8, -8.0f)
    [all...]
  /external/webrtc/webrtc/p2p/base/
turnport.h 133 rtc::AsyncInvoker* invoker() { return &invoker_; } function in class:cricket::TurnPort
  /external/robolectric-shadows/robolectric/src/main/java/org/robolectric/
RobolectricTestRunner.java 595 final Statement invoker = super.methodInvoker(method, test); local
603 invoker.evaluate();
  /external/testng/src/main/java/org/testng/
SuiteRunner.java 281 IInvoker invoker = null; local
283 // Get the invoker and find all the suite level methods
285 // TODO: Code smell. Invoker should belong to SuiteRunner, not TestRunner
287 invoker = tr.getInvoker();
299 // Invoke beforeSuite methods (the invoker can be null
303 if (invoker != null) {
305 invoker.invokeConfigurations(null,
336 invoker.invokeConfigurations(null,
  /external/grpc-grpc/test/cpp/qps/
server_async.cc 258 next_state_(&ServerRpcContextUnaryImpl::invoker),
274 next_state_ = &ServerRpcContextUnaryImpl::invoker;
281 bool invoker(bool ok) { function in class:grpc::testing::final::final
  /external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
ObjectReferenceImpl.java 335 Method invoker = clazz.concreteMethodByName(method.name(), local
337 // invoker is supposed to be non-null under normal circumstances
338 invokedClass = (ClassTypeImpl)invoker.declaringType();
  /external/webrtc/webrtc/base/
thread_unittest.cc 360 AsyncInvoker invoker; local
361 invoker.AsyncInvoke<void>(
386 void AsyncInvokeIntCallback(AsyncInvoker* invoker, Thread* thread) {
388 invoker->AsyncInvoke(thread, FunctorC(),
410 AsyncInvoker invoker; local
416 invoker.AsyncInvoke<void>(&thread, FunctorB(&called));
421 AsyncInvoker invoker; local
427 invoker.AsyncInvoke(&thread, FunctorA(),
437 // Try destroying invoker during call.
439 AsyncInvoker invoker; local
450 AsyncInvoker invoker; local
470 AsyncInvoker invoker; local
484 AsyncInvoker invoker; local
502 AsyncInvoker invoker; local
565 scoped_ptr<GuardedAsyncInvoker> invoker; local
583 scoped_ptr<GuardedAsyncInvoker> invoker; local
600 GuardedAsyncInvoker invoker; local
608 GuardedAsyncInvoker invoker; local
620 GuardedAsyncInvoker invoker; local
631 GuardedAsyncInvoker invoker; local
652 GuardedAsyncInvoker invoker; local
666 GuardedAsyncInvoker invoker; local
682 GuardedAsyncInvoker invoker; local
    [all...]
  /external/testng/src/main/java/org/testng/internal/
Invoker.java 63 public class Invoker implements IInvoker {
73 /** Group failures must be synced as the Invoker is accessed concurrently */
76 /** Class failures must be synced as the Invoker is accessed concurrently */
106 public Invoker(IConfiguration configuration,
554 InvokedMethodListenerInvoker invoker = new InvokedMethodListenerInvoker(listenerMethod, testResult, m_testContext); local
556 invoker.invokeListener(currentListener, invokedMethod);
    [all...]
  /art/test/957-methodhandle-transforms/src/
Main.java 909 MethodHandle invoker = MethodHandles.invoker(target.type()); local
910 assertEquals("barbar", (String) invoker.invoke(target, "bar", "bar"));
911 assertEquals("barbar", (String) invoker.invoke(target, (Object) returnBar(), "bar"));
913 String foo = (String) invoker.invoke(target, "bar", "bar", 24);
    [all...]
  /external/emma/core/java12/com/vladium/emma/rt/
AppRunner.java 500 Invoker invoker = new Invoker (appMain, null, new Object [] {m_appArgs}); local
505 Thread appThread = new Thread (appThreadGroup, invoker, IAppConstants.APP_NAME + " main() thread");
524 final Throwable mainFailure = invoker.getFailure ();
525 invoker = null;
639 private static final class Invoker implements Runnable
641 Invoker (final Method method, final Object target, final Object [] args)
    [all...]
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowActivity.java 535 final ActivityInvoker invoker = new ActivityInvoker(); local
536 invoker
597 final ActivityInvoker invoker = new ActivityInvoker(); local
598 dialog = (Dialog) invoker.call("onCreateDialog", Integer.TYPE).with(id);
603 invoker.call("onPrepareDialog", Integer.TYPE, Dialog.class).with(id, dialog);
605 invoker.call("onPrepareDialog", Integer.TYPE, Dialog.class, Bundle.class).with(id, dialog, bundle);
649 final ActivityInvoker invoker = new ActivityInvoker(); local
651 invoker.call("onSaveInstanceState", Bundle.class).with(outState);
652 invoker.call("onPause").withNothing();
653 invoker.call("onStop").withNothing()
    [all...]
  /external/emma/lib/
emma.jar 
  /external/owasp/sanitizer/tools/emma/lib/
emma.jar 

Completed in 1098 milliseconds