Home
last modified time | relevance | path

Searched refs:Coroutine (Results 1 – 25 of 63) sorted by relevance

123

/third_party/skia/third_party/externals/swiftshader/src/Reactor/
DCoroutine.hpp69 class Coroutine;
115 class Coroutine<Return(Arguments...)> class
118 Coroutine();
156 Coroutine<Return(Arguments...)>::Coroutine() in Coroutine() function in rr::Coroutine
172 void Coroutine<Return(Arguments...)>::finalize(const char *name /*= "coroutine"*/, const Config::Ed… in finalize()
183 Coroutine<Return(Arguments...)>::operator()(Arguments... args) in operator ()()
/third_party/boost/libs/outcome/doc/src/content/tutorial/essential/coroutines/
Dreturning.md11 If the Coroutine throws a C++ exception which was not handled inside the Coroutine
15 - If your Coroutine were returning a `result<T, std::exception_ptr>`, an
18 - If your Coroutine were returning a `result<T, std::error_code>`, the
23 - If your Coroutine were returning an `outcome<T, std::error_code, std::exception_ptr>`,
26 - If your Coroutine were returning an `experimental::status_result<T, system_code>`,
Dawaitables.md2 title = "Coroutine awaitables"
8 (or `<boost/outcome/experimental/coroutine_support.hpp>` if you want Coroutine support for
15 An eagerly evaluated Coroutine: invoking `co_await` upon a function returning one
21 A lazily evaluated Coroutine (often named `task<T>` in most C++ Coroutine
Dtry.md2 title = "Coroutine TRY operation"
7 As one cannot call statement `return` from within a Coroutine, the very first part of Outcome's
D_index.md14 // Coroutine functions MUST return an AWAITABLE type
30 The type `AWAITABLE<T>` is any type which publishes the Coroutine protocol telling
/third_party/flutter/skia/third_party/externals/wuffs/internal/cgen/
Dfunc.go91 if n.Effect().Coroutine() {
163 if k.astFunc.Effect().Coroutine() {
167 if k.astFunc.Effect().Coroutine() {
178 if n.Public() && n.Effect().Coroutine() {
187 returnsStatus: n.Effect().Coroutine() ||
296 if g.currFunk.astFunc.Effect().Coroutine() {
306 if g.currFunk.astFunc.Effect().Coroutine() ||
332 if g.currFunk.astFunc.Effect().Coroutine() {
360 if g.currFunk.astFunc.Effect().Coroutine() {
387 if g.currFunk.astFunc.Effect().Coroutine() ||
[all …]
Dstatement.go36 …if (n.Kind() == a.KAssign) && (n.AsAssign().LHS() != nil) && n.AsAssign().RHS().Effect().Coroutine
106 doWork, hack := (lhs == nil) || rhs.Effect().Coroutine(), false
144 } else if rhs.Effect().Coroutine() {
149 } else if rhs.Effect().Coroutine() {
164 if op != t.IDEqQuestion && rhs.Effect().Coroutine() {
225 if rhs.Effect().Coroutine() {
435 if g.currFunk.astFunc.Effect().Coroutine() ||
Dresume.go161 if f.Effect().Coroutine() {
274 if !n.Effect().Coroutine() {
295 if !n.Effect().Coroutine() {
302 if n.Effect().Coroutine() {
315 if n.Effect().Coroutine() {
/third_party/python/Doc/c-api/
Dcoro.rst5 Coroutine Objects
10 Coroutine objects are what functions declared with an ``async`` keyword
/third_party/skia/third_party/externals/swiftshader/tests/ReactorBenchmarks/
DReactorBenchmarks.cpp41 Coroutine<int()> function; in BENCHMARK_DEFINE_F()
/third_party/boost/libs/coroutine/doc/
Dcoro.qbk8 [library Coroutine
26 [def __boost_coroutine__ [*Boost.Coroutine]]
Dcoroutine.qbk8 [section:coroutine Coroutine]
/third_party/python/Doc/library/
Dcollections.abc.rst176 :class:`Coroutine` [1]_ :class:`Awaitable` ``send``, ``throw`` ``close``
298 :term:`Coroutine <coroutine>` objects and instances of the
299 :class:`~collections.abc.Coroutine` ABC are all instances of this ABC.
310 .. class:: Coroutine
316 :meth:`__await__`. All :class:`Coroutine` instances are also instances of
323 Using ``isinstance(gencoro, Coroutine)`` for them will return ``False``.
/third_party/boost/libs/coroutine/test/
DJamfile.v21 # Boost.Coroutine Library Tests Jamfile
/third_party/boost/libs/coroutine/example/symmetric/
DJamfile.v21 # Boost.Coroutine Library Examples Jamfile
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
DComputeProgram.hpp39 class ComputeProgram : public Coroutine<SpirvShader::YieldResult(
DComputeProgram.cpp268 using Coroutine = std::unique_ptr<rr::Stream<SpirvShader::YieldResult>>; in run() typedef
269 std::queue<Coroutine> coroutines; in run()
/third_party/boost/libs/coroutine/example/asymmetric/
DJamfile.v21 # Boost.Coroutine Library Examples Jamfile
/third_party/python/Misc/NEWS.d/
D3.5.0b3.rst39 coroutines; inspect.iscoroutine no longer uses collections.abc.Coroutine,
43 collections.abc.Coroutine can no longer be used to detect generator-based
/third_party/ltp/testcases/kernel/syscalls/epoll/
DREADME.1ST20 Portable Coroutine Library (PCL) http://www.xmailserver.org/libpcl.html
/third_party/python/Lib/test/
Dtest_collections.py21 from collections.abc import Awaitable, Coroutine
783 class MinimalCoro(Coroutine):
812 Coroutine.register(CoroLike)
833 class MinimalCoro(Coroutine):
843 self.assertNotIsInstance(x, Coroutine)
844 self.assertFalse(issubclass(type(x), Coroutine), repr(type(x)))
855 self.assertNotIsInstance(c, Coroutine)
858 self.assertIsInstance(c, Coroutine)
870 self.assertTrue(isinstance(CoroLike(), Coroutine))
871 self.assertTrue(issubclass(CoroLike, Coroutine))
[all …]
/third_party/python/Lib/
D_collections_abc.py122 class Coroutine(Awaitable): class
158 if cls is Coroutine:
163 Coroutine.register(coroutine)
Dtypes.py289 not isinstance(coro, _collections_abc.Coroutine)):
/third_party/python/Lib/asyncio/
Dcoroutines.py173 collections.abc.Coroutine, CoroWrapper)
/third_party/boost/libs/asio/doc/overview/
Dspawn.qbk11 running stackful coroutines. It is based on the Boost.Coroutine library. The

123