/external/chromium_org/third_party/skia/third_party/lua/src/ |
loslib.c | 151 res = lua_isnil(L, -1) ? -1 : lua_toboolean(L, -1); 290 status = (lua_toboolean(L, 1) ? EXIT_SUCCESS : EXIT_FAILURE); 293 if (lua_toboolean(L, 2))
|
ltablib.c | 176 res = lua_toboolean(L, -1);
|
loadlib.c | 513 if (lua_toboolean(L, -1)) /* is it there? */ 631 b = lua_toboolean(L, -1);
|
lbaselib.c | 347 if (!lua_toboolean(L, 1))
|
lua.c | 492 result = lua_toboolean(L, -1); /* get result */
|
lua.h | 171 LUA_API int (lua_toboolean) (lua_State *L, int idx);
|
lstrlib.c | 588 if (find && (lua_toboolean(L, 4) || nospecials(p, lp))) { 725 if (!lua_toboolean(L, -1)) { /* nil or false? */
|
liolib.c | 501 if (lua_toboolean(L, lua_upvalueindex(3))) { /* generator created file? */
|
lauxlib.c | 745 lua_pushstring(L, (lua_toboolean(L, idx) ? "true" : "false"));
|
lapi.c | 383 LUA_API int lua_toboolean (lua_State *L, int idx) { function
|
/external/chromium_org/third_party/skia/src/utils/ |
SkLua.cpp | 82 return !!lua_toboolean(L, index); 790 if (lua_toboolean(L, 2)) { [all...] |