Home
last modified time | relevance | path

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

123456789

/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>): Unit = 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.kt379 override fun invoke(cause: Throwable?) { node.remove() } in removeOnCancellation() method in kotlinx.coroutines.RemoveOnCancel
384 override fun invoke(cause: Throwable?) = handle.dispose() method in kotlinx.coroutines.DisposeOnCancel
/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.kt28 public operator fun SelectClause0.invoke(block: suspend () -> R) in <lambda>() method
33 public operator fun <Q> SelectClause1<Q>.invoke(block: suspend (Q) -> R) in <lambda>() method
38 public operator fun <P, Q> SelectClause2<P, Q>.invoke(param: P, block: suspend (Q) -> R) in <lambda>() method
44 …public operator fun <P, Q> SelectClause2<P?, Q>.invoke(block: suspend (Q) -> R): Unit = invoke(nul… in <lambda>() method
338 override fun invoke(cause: Throwable?) { in next() method in kotlinx.coroutines.selects.SelectBuilderImpl
628 override fun SelectClause0.invoke(block: suspend () -> R) { in next() method
632 override fun <Q> SelectClause1<Q>.invoke(block: suspend (Q) -> R) { in next() method
636 override fun <P, Q> SelectClause2<P, Q>.invoke(param: P, block: suspend (Q) -> R) { in next() method
/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/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/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/llvm-project/clang/include/clang/Tooling/Refactoring/
DRefactoringActionRules.h54 void invoke(RefactoringResultConsumer &Consumer, in invoke() function
76 void invoke(RefactoringResultConsumer &Consumer, 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
/external/catch2/include/internal/benchmark/detail/
Dcatch_complete_invoke.hpp33 static Result invoke(Fun&& fun, Args&&... args) { in invoke() function
40 static CompleteType_t<void> invoke(Fun&& fun, Args&&... args) { in invoke() function
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-jdk9/test/
DIntegrationTest.kt23 …MAIN { override fun invoke(context: CoroutineContext): CoroutineContext = context.minusKey(… in <lambda>() method in kotlinx.coroutines.jdk9.IntegrationTest.Ctx
24 …DEFAULT { override fun invoke(context: CoroutineContext): CoroutineContext = Dispatchers.Defau… in <lambda>() method in kotlinx.coroutines.jdk9.IntegrationTest.Ctx
25 …UNCONFINED { override fun invoke(context: CoroutineContext): CoroutineContext = Dispatchers.Uncon… in <lambda>() method in kotlinx.coroutines.jdk9.IntegrationTest.Ctx
27 abstract operator fun invoke(context: CoroutineContext): CoroutineContext in <lambda>() method in kotlinx.coroutines.jdk9.IntegrationTest.Ctx
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-rx3/test/
DIntegrationTest.kt23 …MAIN { override fun invoke(context: CoroutineContext): CoroutineContext = context.minusKey(… in <lambda>() method in kotlinx.coroutines.rx3.IntegrationTest.Ctx
24 …DEFAULT { override fun invoke(context: CoroutineContext): CoroutineContext = Dispatchers.Defau… in <lambda>() method in kotlinx.coroutines.rx3.IntegrationTest.Ctx
25 …UNCONFINED { override fun invoke(context: CoroutineContext): CoroutineContext = Dispatchers.Uncon… in <lambda>() method in kotlinx.coroutines.rx3.IntegrationTest.Ctx
27 abstract operator fun invoke(context: CoroutineContext): CoroutineContext in <lambda>() method in kotlinx.coroutines.rx3.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/javassist/src/test/javassist/
DJvstTestRoot.java40 protected int invoke(Object target, String method) throws Exception { in invoke() method in JvstTestRoot
46 protected int invoke(Object target, String method, int arg) in invoke() method in JvstTestRoot
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-reactive/test/
DIntegrationTest.kt22 …MAIN { override fun invoke(context: CoroutineContext): CoroutineContext = context.minusKey(… in <lambda>() method in kotlinx.coroutines.reactive.IntegrationTest.Ctx
23 …DEFAULT { override fun invoke(context: CoroutineContext): CoroutineContext = Dispatchers.Defau… in <lambda>() method in kotlinx.coroutines.reactive.IntegrationTest.Ctx
24 …UNCONFINED { override fun invoke(context: CoroutineContext): CoroutineContext = Dispatchers.Uncon… in <lambda>() method in kotlinx.coroutines.reactive.IntegrationTest.Ctx
26 abstract operator fun invoke(context: CoroutineContext): CoroutineContext in <lambda>() method in kotlinx.coroutines.reactive.IntegrationTest.Ctx
/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/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/llvm-project/clang/test/CodeGen/
Dmozilla-ms-inline-asm.c8 void invoke(void* that, unsigned methodIndex, in invoke() function
/external/clang/test/CodeGen/
Dmozilla-ms-inline-asm.c8 void invoke(void* that, unsigned methodIndex, in invoke() function
/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

123456789