Home
last modified time | relevance | path

Searched refs:lua_istable (Results 1 – 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dlauxlib.c44 if (level == 0 || !lua_istable(L, -1)) in findfield()
783 else if (!lua_istable(L, -1)) { /* field has a non-table value? */ in luaL_findtable()
814 if (!lua_istable(L, -1)) { /* not found? */ in luaL_pushmodule()
868 if (lua_istable(L, -1)) return 1; /* table already there */ in luaL_getsubtable()
Dloadlib.c483 if (!lua_istable(L, 3)) in findloader()
/device/linaro/bootloader/edk2/StdLib/Include/Lua/
Dlua.h332 #define lua_istable(L,n) (lua_type(L, (n)) == LUA_TTABLE) macro