Home
last modified time | relevance | path

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

/freebsd/sys/contrib/openzfs/module/lua/
H A Dlauxlib.c38 if (level == 0 || !lua_istable(L, -1)) in findfield()
639 else if (!lua_istable(L, -1)) { /* field has a non-table value? */ in luaL_findtable()
670 if (!lua_istable(L, -1)) { /* not found? */ in luaL_pushmodule()
724 if (lua_istable(L, -1)) return 1; /* table already there */ in luaL_getsubtable()
/freebsd/contrib/llvm-project/lldb/bindings/lua/
H A Dlua-typemaps.swig198 if (lua_istable(L, $input)) {
226 $1 = (lua_istable(L, $input) || lua_isnil(L, $input));
269 if (lua_istable(L, $input)) {
/freebsd/contrib/lutok/
H A Dstate.cpp468 return lua_istable(_pimpl->lua_state, index); in is_table()
554 assert(lua_istable(_pimpl->lua_state, index)); in next()
H A Dstate_test.cpp272 ATF_REQUIRE(lua_istable(raw(state), -1)); in ATF_TEST_CASE_BODY()
580 ATF_REQUIRE(lua_istable(raw(state), -1)); in ATF_TEST_CASE_BODY()
/freebsd/libexec/flua/modules/
H A Dlfs.c351 if (!lua_istable(L, 2)) in lua_attributes()
/freebsd/lib/clang/liblldb/
H A DLLDBWrapLua.cpp1176 assert(lua_istable(L,-1)); in SWIG_Lua_elua_emulate_register()
1229 assert(lua_istable(L,-1)); in SWIG_Lua_elua_emulate_register()
1279 if(lua_istable(L,-2)) { in SWIG_Lua_emulate_elua_getmetatable()
1318 assert(lua_istable(L,-2)); /* just in case */ in SWIG_Lua_namespace_get()
1320 assert(lua_istable(L,-1)); in SWIG_Lua_namespace_get()
1322 assert(lua_istable(L,-1)); in SWIG_Lua_namespace_get()
1336 assert(lua_istable(L,-1)); /* just in case */ in SWIG_Lua_namespace_get()
1357 assert(lua_istable(L,1)); in SWIG_Lua_namespace_set()
1359 assert(lua_istable(L,-1)); in SWIG_Lua_namespace_set()
1362 if (lua_istable(L,-1)) in SWIG_Lua_namespace_set()
[all …]
/freebsd/sys/contrib/openzfs/include/sys/lua/
H A Dlua.h332 #define lua_istable(L,n) (lua_type(L, (n)) == LUA_TTABLE) macro
/freebsd/contrib/lua/src/
H A Dlua.h385 #define lua_istable(L,n) (lua_type(L, (n)) == LUA_TTABLE) macro
H A Dltests.c1505 lua_pushboolean(L1, lua_istable(L1, getindex)); in runC()
1859 if (!lua_istable(L, -1)) { /* no hook table? */ in sethookaux()
H A Dlauxlib.c53 if (level == 0 || !lua_istable(L, -1)) in findfield()
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dzcp.c1439 if (lua_gettop(state) == 1 && lua_istable(state, 1)) { in zcp_parse_args()