HomeSort by relevance Sort by last modified time
    Searched refs:awaitable (Results 1 - 5 of 5) sorted by null

  /external/clang/test/SemaCXX/
coroutines.cpp 3 struct awaitable { struct
75 awaitable yield_value(int); // expected-note 2{{candidate}}
76 awaitable yield_value(yielded_thing); // expected-note 2{{candidate}}
130 CtorDtor(awaitable a) {
168 template void await_template(awaitable);
171 awaitable operator co_await(indirectly_awaitable); // expected-note {{should be declared prior to}}
189 awaitable yield_value(int());
199 awaitable f(), f(int); // expected-note 4{{possible target}}
  /external/python/cpython3/Lib/test/
test_asyncgen.py 14 def awaitable(*, throw=False): function
136 await awaitable()
139 await awaitable()
141 await awaitable()
148 await awaitable()
150 await awaitable()
174 await awaitable()
176 await awaitable(throw=True)
184 await awaitable()
257 await awaitable()
    [all...]
  /external/grpc-grpc/src/csharp/Grpc.Core/
Calls.cs 51 /// <returns>An awaitable call object providing access to the response.</returns>
89 /// <returns>An awaitable call object providing access to the response.</returns>
  /external/python/cpython3/Lib/asyncio/
tasks.py 574 """Wrap a coroutine or an awaitable in a future.
592 raise TypeError('An asyncio.Future, a coroutine or an awaitable is '
597 def _wrap_awaitable(awaitable):
600 Wraps awaitable (an object with __await__) into a coroutine
603 return (yield from awaitable.__await__())
  /external/python/cpython3/Python/
ceval.c 1696 PyObject *awaitable = NULL; local
    [all...]

Completed in 321 milliseconds