/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
ldo.c | 437 return; /* coroutine finished normally */ 476 return 1; /* continue running the coroutine */ 482 ** coroutine itself. (Such errors should not be handled by any coroutine 483 ** error handler and should not kill the coroutine.) 502 if (L->status == LUA_OK) { /* may be starting a coroutine */ 504 resume_error(L, "cannot resume non-suspended coroutine", firstArg); 505 /* coroutine is in base level; start running it */ 510 resume_error(L, "cannot resume dead coroutine", firstArg); 576 luaG_runerror(L, "attempt to yield from outside a coroutine"); [all...] |
/external/syslinux/com32/lua/src/ |
ldo.c | 437 return; /* coroutine finished normally */ 476 return 1; /* continue running the coroutine */ 482 ** coroutine itself. (Such errors should not be handled by any coroutine 483 ** error handler and should not kill the coroutine.) 502 if (L->status == LUA_OK) { /* may be starting a coroutine */ 504 resume_error(L, "cannot resume non-suspended coroutine", firstArg); 505 /* coroutine is in base level; start running it */ 510 resume_error(L, "cannot resume dead coroutine", firstArg); 576 luaG_runerror(L, "attempt to yield from outside a coroutine"); [all...] |
/external/python/cpython3/Lib/test/ |
test_types.py | [all...] |
/external/libcxx/test/std/experimental/language.support/support.coroutines/coroutine.traits/ |
promise_type.pass.cpp | 13 #include <experimental/coroutine>
|
/external/libcxx/test/std/experimental/language.support/support.coroutines/coroutine.trivial.awaitables/ |
suspend_always.pass.cpp | 13 #include <experimental/coroutine>
|
suspend_never.pass.cpp | 13 #include <experimental/coroutine>
|
/external/libcxx/test/std/experimental/language.support/support.coroutines/end.to.end/ |
bool_await_suspend.pass.cpp | 16 #include <experimental/coroutine>
|
expected.pass.cpp | 13 #include <experimental/coroutine>
|
fullexpr-dtor.pass.cpp | 13 #include <experimental/coroutine>
|
/external/libcxx/test/support/ |
coroutine_types.h | 14 #include <experimental/coroutine>
|
/external/python/cpython3/Lib/asyncio/ |
base_subprocess.py | 8 from .coroutines import coroutine 162 @coroutine 232 @coroutine 236 This method is a coroutine."""
|
events.py | 206 """Coroutine to wait until service is closed.""" 278 # Method scheduling a coroutine object: create a task. 311 """A coroutine which creates a TCP server bound to host and port. 355 """A coroutine which creates a UNIX Domain Socket server. 379 """A coroutine which creates a datagram endpoint. 382 When successful, the coroutine returns a (transport, protocol) pair. 669 When called from a coroutine or a callback (e.g. scheduled with call_soon
|
windows_events.py | 18 from .coroutines import coroutine 314 @coroutine 323 @coroutine 370 @coroutine 485 @coroutine 487 # Coroutine closing the accept socket if the future is cancelled 539 @coroutine
|
/external/syslinux/bios/com32/lua/src/ |
liblua.c32 | |
/external/syslinux/efi32/com32/lua/src/ |
liblua.c32 | |
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/language.support/support.coroutines/coroutine.traits/ |
promise_type.pass.cpp | 13 #include <experimental/coroutine>
|
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/language.support/support.coroutines/coroutine.trivial.awaitables/ |
suspend_always.pass.cpp | 13 #include <experimental/coroutine>
|
suspend_never.pass.cpp | 13 #include <experimental/coroutine>
|
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/language.support/support.coroutines/end.to.end/ |
bool_await_suspend.pass.cpp | 16 #include <experimental/coroutine>
|
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/support/ |
coroutine_types.h | 14 #include <experimental/coroutine>
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/doc/ |
contents.html | 110 <LI><A HREF="manual.html#6.2">6.2 – Coroutine Manipulation</A> 185 <A HREF="manual.html#pdf-coroutine.create">coroutine.create</A><BR> 186 <A HREF="manual.html#pdf-coroutine.resume">coroutine.resume</A><BR> 187 <A HREF="manual.html#pdf-coroutine.running">coroutine.running</A><BR> 188 <A HREF="manual.html#pdf-coroutine.status">coroutine.status</A><BR> 189 <A HREF="manual.html#pdf-coroutine.wrap">coroutine.wrap</A><BR [all...] |
manual.html | 1010 A coroutine in Lua represents an independent thread of execution. 1012 a coroutine only suspends its execution by explicitly calling 1017 You create a coroutine by calling <a href="#pdf-coroutine.create"><code>coroutine.create</code></a>. 1019 that is the main function of the coroutine. 1020 The <code>create</code> function only creates a new coroutine and 1022 it does not start the coroutine. 1026 You execute a coroutine by calling <a href="#pdf-coroutine.resume"><code>coroutine.resume</code></a> [all...] |
/external/syslinux/com32/lua/doc/ |
contents.html | 110 <LI><A HREF="manual.html#6.2">6.2 – Coroutine Manipulation</A> 185 <A HREF="manual.html#pdf-coroutine.create">coroutine.create</A><BR> 186 <A HREF="manual.html#pdf-coroutine.resume">coroutine.resume</A><BR> 187 <A HREF="manual.html#pdf-coroutine.running">coroutine.running</A><BR> 188 <A HREF="manual.html#pdf-coroutine.status">coroutine.status</A><BR> 189 <A HREF="manual.html#pdf-coroutine.wrap">coroutine.wrap</A><BR [all...] |
manual.html | 1010 A coroutine in Lua represents an independent thread of execution. 1012 a coroutine only suspends its execution by explicitly calling 1017 You create a coroutine by calling <a href="#pdf-coroutine.create"><code>coroutine.create</code></a>. 1019 that is the main function of the coroutine. 1020 The <code>create</code> function only creates a new coroutine and 1022 it does not start the coroutine. 1026 You execute a coroutine by calling <a href="#pdf-coroutine.resume"><code>coroutine.resume</code></a> [all...] |
/external/libcxx/test/libcxx/ |
double_include.sh.cpp | 139 #include <experimental/coroutine>
|