/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
D | Coroutine.hpp | 69 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/ |
D | returning.md | 11 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>`,
|
D | awaitables.md | 2 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
|
D | try.md | 2 title = "Coroutine TRY operation" 7 As one cannot call statement `return` from within a Coroutine, the very first part of Outcome's
|
D | _index.md | 14 // 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/ |
D | func.go | 91 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 …]
|
D | statement.go | 36 …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() ||
|
D | resume.go | 161 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/ |
D | coro.rst | 5 Coroutine Objects 10 Coroutine objects are what functions declared with an ``async`` keyword
|
/third_party/skia/third_party/externals/swiftshader/tests/ReactorBenchmarks/ |
D | ReactorBenchmarks.cpp | 41 Coroutine<int()> function; in BENCHMARK_DEFINE_F()
|
/third_party/boost/libs/coroutine/doc/ |
D | coro.qbk | 8 [library Coroutine 26 [def __boost_coroutine__ [*Boost.Coroutine]]
|
D | coroutine.qbk | 8 [section:coroutine Coroutine]
|
/third_party/python/Doc/library/ |
D | collections.abc.rst | 176 :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/ |
D | Jamfile.v2 | 1 # Boost.Coroutine Library Tests Jamfile
|
/third_party/boost/libs/coroutine/example/symmetric/ |
D | Jamfile.v2 | 1 # Boost.Coroutine Library Examples Jamfile
|
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/ |
D | ComputeProgram.hpp | 39 class ComputeProgram : public Coroutine<SpirvShader::YieldResult(
|
D | ComputeProgram.cpp | 268 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/ |
D | Jamfile.v2 | 1 # Boost.Coroutine Library Examples Jamfile
|
/third_party/python/Misc/NEWS.d/ |
D | 3.5.0b3.rst | 39 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/ |
D | README.1ST | 20 Portable Coroutine Library (PCL) http://www.xmailserver.org/libpcl.html
|
/third_party/python/Lib/test/ |
D | test_collections.py | 21 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.py | 122 class Coroutine(Awaitable): class 158 if cls is Coroutine: 163 Coroutine.register(coroutine)
|
D | types.py | 289 not isinstance(coro, _collections_abc.Coroutine)):
|
/third_party/python/Lib/asyncio/ |
D | coroutines.py | 173 collections.abc.Coroutine, CoroWrapper)
|
/third_party/boost/libs/asio/doc/overview/ |
D | spawn.qbk | 11 running stackful coroutines. It is based on the Boost.Coroutine library. The
|