OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:lua_yield
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/third_party/skia/third_party/lua/src/
lcorolib.c
32
if (status == LUA_OK || status ==
LUA_YIELD
) {
100
return
lua_yield
(L, lua_gettop(L));
110
case
LUA_YIELD
:
ldo.c
414
ci->u.c.status =
LUA_YIELD
; /* 'default' status */
502
else if (L->status !=
LUA_YIELD
)
512
ci->u.c.status =
LUA_YIELD
; /* 'default' status */
539
while (status != LUA_OK && status !=
LUA_YIELD
) { /* error? */
570
L->status =
LUA_YIELD
;
579
luaD_throw(L,
LUA_YIELD
);
lua.h
46
#define
LUA_YIELD
1
273
#define
lua_yield
(L,n) lua_yieldk(L, (n), 0, NULL)
macro
lbaselib.c
384
return finishpcall(L, (status ==
LUA_YIELD
));
lvm.c
82
if (L->status ==
LUA_YIELD
) { /* did hook yield? */
88
luaD_throw(L,
LUA_YIELD
);
/external/chromium_org/third_party/skia/third_party/lua/doc/
manual.html
[
all
...]
contents.html
443
<A HREF="manual.html#
lua_yield
">
lua_yield
</A><BR>
Completed in 120 milliseconds