/external/chromium_org/third_party/skia/third_party/lua/src/ |
lua.c | 136 if (status != LUA_OK && !lua_isnil(L, -1)) { 150 if (status != LUA_OK) { 212 if (status == LUA_OK) status = docall(L, 0, 0); 219 if (status == LUA_OK) status = docall(L, 0, 0); 229 if (status == LUA_OK) 308 if (status == LUA_OK) status = docall(L, 0, LUA_MULTRET); 310 if (status == LUA_OK && lua_gettop(L) > 0) { /* any result to print? */ 314 if (lua_pcall(L, lua_gettop(L)-1, 0, 0) != LUA_OK) 336 if (status == LUA_OK) 404 if (dostring(L, chunk, "=(command line)") != LUA_OK) [all...] |
lcorolib.c | 26 if (lua_status(co) == LUA_OK && lua_gettop(co) == 0) { 32 if (status == LUA_OK || status == LUA_YIELD) { 113 case LUA_OK: {
|
lbaselib.c | 246 if (status == LUA_OK) { 339 if (luaL_loadfile(L, fname) != LUA_OK) 394 return finishpcall(L, (status == LUA_OK)); 406 return finishpcall(L, (status == LUA_OK));
|
ldo.c | 128 lj.status = LUA_OK; 415 lua_assert(ci->u.c.status != LUA_OK); 495 if (L->status == LUA_OK) { /* may be starting a coroutine */ 505 L->status = LUA_OK; 534 api_checknelems(L, (L->status == LUA_OK) ? nargs + 1 : nargs); 539 while (status != LUA_OK && status != LUA_YIELD) { /* error? */ 596 if (status != LUA_OK) { /* an error occurred? */
|
luac.c | 144 if (lua_load(L,reader,&i,"=(" PROGNAME ")",NULL)!=LUA_OK) fatal(lua_tostring(L,-1)); 172 if (luaL_loadfile(L,filename)!=LUA_OK) fatal(lua_tostring(L,-1)); 200 if (lua_pcall(L,2,0,0)!=LUA_OK) fatal(lua_tostring(L,-1));
|
lstate.c | 216 L->status = LUA_OK; 304 if (luaD_rawrunprotected(L, f_luaopen, NULL) != LUA_OK) {
|
lapi.c | 103 res = (luaD_rawrunprotected(L, &growstack, &size) == LUA_OK); 885 else return LUA_OK; 896 api_check(L, L->status == LUA_OK, "cannot do calls on non-normal thread"); 937 api_check(L, L->status == LUA_OK, "cannot do calls on non-normal thread"); 965 status = LUA_OK; /* if it is here, there were no errors */ 981 if (status == LUA_OK) { /* no errors? */
|
lua.h | 45 #define LUA_OK 0
|
loadlib.c | 415 return checkload(L, (luaL_loadfile(L, filename) == LUA_OK), filename);
|
lgc.c | 820 if (status != LUA_OK && propagateerrors) { /* error while running __gc? */ [all...] |
/external/chromium_org/third_party/skia/samplecode/ |
SampleLua.cpp | 127 if (lua_pcall(L, 1, 0, 0) != LUA_OK) {
|
/external/chromium_org/third_party/skia/tools/lua/ |
lua_pictures.cpp | 60 if (lua_pcall(L, 2, 0, 0) != LUA_OK) {
|
/external/chromium_org/third_party/skia/src/utils/ |
SkLuaCanvas.cpp | 31 if (lua_pcall(L, 1, 0, 0) != LUA_OK) {
|
SkLua.cpp | 99 if (lua_pcall(fL, 0, 0, 0) != LUA_OK) { [all...] |