Home
last modified time | relevance | path

Searched defs:invoke (Results 1 – 25 of 163) sorted by relevance

1234567

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
DCompletionHandler.common.kt31 abstract fun invoke(cause: Throwable?) in invoke() method in kotlinx.coroutines.CompletionHandlerBase
38 abstract fun invoke(cause: Throwable?) in invoke() method in kotlinx.coroutines.CancelHandlerBase
DCoroutineStart.kt88 public operator fun <T> invoke(block: suspend () -> T, completion: Continuation<T>) = in invoke() method in kotlinx.coroutines.CoroutineStart
107 …public operator fun <R, T> invoke(block: suspend R.() -> T, receiver: R, completion: Continuation<… in invoke() method in kotlinx.coroutines.CoroutineStart
DCancellableContinuation.kt263 override fun invoke(cause: Throwable?) { node.remove() } in suspendAtomicCancellableCoroutine() method in kotlinx.coroutines.RemoveOnCancel
268 override fun invoke(cause: Throwable?) = handle.dispose() method in kotlinx.coroutines.DisposeOnCancel
DAwait.kt90 override fun invoke(cause: Throwable?) { disposeAll() } in invoke() method in kotlinx.coroutines.AwaitAll.DisposeHandlersOnCancel
100 override fun invoke(cause: Throwable?) { in toString() method in kotlinx.coroutines.AwaitAll
/external/mockito/src/main/java/org/mockito/internal/invocation/
DRealMethod.java30 public Object invoke() { in invoke() method in RealMethod.IsIllegal
60 public Object invoke() throws Throwable { in invoke() method in RealMethod.FromBehavior
72 Object invoke() throws Throwable; in invoke() method
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/selects/
DSelectUnbiased.kt54 override fun SelectClause0.invoke(block: suspend () -> R) { in invoke() method
58 override fun <Q> SelectClause1<Q>.invoke(block: suspend (Q) -> R) { in invoke() method
62 override fun <P, Q> SelectClause2<P, Q>.invoke(param: P, block: suspend (Q) -> R) { in invoke() method
DSelect.kt24 public operator fun SelectClause0.invoke(block: suspend () -> R) in <lambda>() method
29 public operator fun <Q> SelectClause1<Q>.invoke(block: suspend (Q) -> R) in <lambda>() method
34 public operator fun <P, Q> SelectClause2<P, Q>.invoke(param: P, block: suspend (Q) -> R) in <lambda>() method
40 …public operator fun <P, Q> SelectClause2<P?, Q>.invoke(block: suspend (Q) -> R) = invoke(null, blo… in <lambda>() method
292 override fun invoke(cause: Throwable?) { in invoke() method in kotlinx.coroutines.selects.SelectBuilderImpl
410 override fun SelectClause0.invoke(block: suspend () -> R) { in invoke() method
414 override fun <Q> SelectClause1<Q>.invoke(block: suspend (Q) -> R) { in invoke() method
418 override fun <P, Q> SelectClause2<P, Q>.invoke(param: P, block: suspend (Q) -> R) { in invoke() method
/external/kotlinx.coroutines/kotlinx-coroutines-core/native/src/
DCompletionHandler.kt10 actual abstract override fun invoke(cause: Throwable?) in invoke() method in kotlinx.coroutines.CompletionHandlerBase
16 actual abstract override fun invoke(cause: Throwable?) in invoke() method in kotlinx.coroutines.CancelHandlerBase
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/
DCompletionHandler.kt10 actual abstract override fun invoke(cause: Throwable?) in invoke() method in kotlinx.coroutines.CompletionHandlerBase
16 actual abstract override fun invoke(cause: Throwable?) in invoke() method in kotlinx.coroutines.CancelHandlerBase
DFuture.kt39 override fun invoke(cause: Throwable?) { in cancelFutureOnCompletion() method
48 override fun invoke(cause: Throwable?) { in invoke() method in CancelFutureOnCancel
/external/kotlinx.coroutines/kotlinx-coroutines-core/js/src/
DCompletionHandler.kt11 actual abstract fun invoke(cause: Throwable?) in invoke() method in kotlinx.coroutines.CompletionHandlerBase
19 actual abstract fun invoke(cause: Throwable?) in invoke() method in kotlinx.coroutines.CancelHandlerBase
/external/parameter-framework/asio-1.10.6/include/asio/detail/
Dhandler_invoke_helpers.hpp27 inline void invoke(Function& function, Context& context) in invoke() function
39 inline void invoke(const Function& function, Context& context) in invoke() function
/external/guice/core/test/com/google/inject/internal/
DProxyFactoryTest.java59 public void invoke() { in invoke() method in ProxyFactoryTest.Simple
69 public Object invoke(MethodInvocation methodInvocation) throws Throwable { in invoke() method in ProxyFactoryTest.SimpleInterceptor
192 public Object invoke(MethodInvocation methodInvocation) throws Throwable { in invoke() method in ProxyFactoryTest.CountingInterceptor
201 public Object invoke(MethodInvocation methodInvocation) throws Throwable { in invoke() method in ProxyFactoryTest.DoubleInterceptor
/external/guice/core/test/com/google/inject/
DMethodInterceptionTest.java45 public Object invoke(MethodInvocation methodInvocation) throws Throwable { in invoke() method in MethodInterceptionTest.CountingInterceptor
53 public Object invoke(MethodInvocation methodInvocation) throws Throwable { in invoke() method in MethodInterceptionTest.ReturnNullInterceptor
60 public Object invoke(MethodInvocation methodInvocation) throws Throwable { in invoke() method in MethodInterceptionTest.NoOpInterceptor
374 public Object invoke(MethodInvocation methodInvocation) throws Throwable { in invoke() method in MethodInterceptionTest.NamedInterceptor
425 public Object invoke(final MethodInvocation methodInvocation) throws Throwable { in invoke() method in MethodInterceptionTest.CallLaterInterceptor
DIntegrationTest.java65 public Object invoke(MethodInvocation methodInvocation) throws Throwable { in invoke() method in IntegrationTest.CountingInterceptor
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-reactive/test/
DIntegrationTest.kt23 …MAIN { override fun invoke(context: CoroutineContext): CoroutineContext = context.minusKey(… in <lambda>() method in kotlinx.coroutines.reactive.IntegrationTest.Ctx
24 …DEFAULT { override fun invoke(context: CoroutineContext): CoroutineContext = Dispatchers.Defau… in <lambda>() method in kotlinx.coroutines.reactive.IntegrationTest.Ctx
25 …UNCONFINED { override fun invoke(context: CoroutineContext): CoroutineContext = Dispatchers.Uncon… in <lambda>() method in kotlinx.coroutines.reactive.IntegrationTest.Ctx
27 abstract operator fun invoke(context: CoroutineContext): CoroutineContext in <lambda>() method in kotlinx.coroutines.reactive.IntegrationTest.Ctx
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-rx2/test/
DIntegrationTest.kt23 …MAIN { override fun invoke(context: CoroutineContext): CoroutineContext = context.minusKey(… in <lambda>() method in kotlinx.coroutines.rx2.IntegrationTest.Ctx
24 …DEFAULT { override fun invoke(context: CoroutineContext): CoroutineContext = Dispatchers.Defau… in <lambda>() method in kotlinx.coroutines.rx2.IntegrationTest.Ctx
25 …UNCONFINED { override fun invoke(context: CoroutineContext): CoroutineContext = Dispatchers.Uncon… in <lambda>() method in kotlinx.coroutines.rx2.IntegrationTest.Ctx
27 abstract operator fun invoke(context: CoroutineContext): CoroutineContext in <lambda>() method in kotlinx.coroutines.rx2.IntegrationTest.Ctx
/external/guice/extensions/servlet/test/com/google/inject/servlet/
DServletTestUtils.java31 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { in invoke() method in ServletTestUtils.ThrowingInvocationHandler
109 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { in invoke() method in FakeHttpSessionHandler
/external/oauth/core/src/main/java/net/oauth/client/
DOAuthClient.java214 public OAuthMessage invoke(OAuthAccessor accessor, String httpMethod, in invoke() method in OAuthClient
249 public OAuthMessage invoke(OAuthAccessor accessor, String url, in invoke() method in OAuthClient
264 public OAuthMessage invoke(OAuthMessage request, ParameterStyle style) in invoke() method in OAuthClient
/external/clang/test/CodeGen/
Dmozilla-ms-inline-asm.c8 void invoke(void* that, unsigned methodIndex, in invoke() function
/external/guice/core/src/com/google/inject/internal/
DDelegatingInvocationHandler.java31 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { in invoke() method in DelegatingInvocationHandler
/external/dexmaker/dexmaker-mockito/src/main/java/com/android/dx/mockito/
DInvocationHandlerAdapter.java42 public Object invoke(final Object proxy, final Method method, final Object[] rawArgs) in invoke() method in InvocationHandlerAdapter
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/channels/
DTickerChannelCommonTest.kt25 override fun invoke(delay: Long, initialDelay: Long) = in invoke() method in kotlinx.coroutines.channels.TickerChannelCommonTest.Channel
30 override fun invoke(delay: Long, initialDelay: Long) = in invoke() method in kotlinx.coroutines.channels.TickerChannelCommonTest.Channel
34 abstract operator fun invoke(delay: Long, initialDelay: Long = 0): ReceiveChannel<Unit> in invoke() method in kotlinx.coroutines.channels.TickerChannelCommonTest.Channel
/external/easymock/src/org/easymock/internal/
DMockInvocationHandler.java32 public Object invoke(Object proxy, Method method, Object[] args) in invoke() method in MockInvocationHandler
/external/kotlinx.coroutines/ui/kotlinx-coroutines-android/src/
DAndroidExceptionPreHandler.kt20 override fun invoke(): Method? = try { in invoke() method in kotlinx.coroutines.android.AndroidExceptionPreHandler

1234567