Searched refs:ttistable (Results 1 – 5 of 5) sorted by relevance
/external/lua/src/ |
D | lvm.h | 59 (!ttistable(t) \ 81 (!ttistable(t) \
|
D | lapi.c | 651 api_check(L, ttistable(t), "table expected"); in lua_rawget() 662 api_check(L, ttistable(t), "table expected"); in lua_rawgeti() 675 api_check(L, ttistable(t), "table expected"); in lua_rawgetp() 807 api_check(L, ttistable(o), "table expected"); in lua_rawset() 822 api_check(L, ttistable(o), "table expected"); in lua_rawseti() 836 api_check(L, ttistable(o), "table expected"); in lua_rawsetp() 855 api_check(L, ttistable(L->top - 1), "table expected"); in lua_setmetatable() 1128 api_check(L, ttistable(t), "table expected"); in lua_next()
|
D | ltm.c | 92 if ((ttistable(o) && (mt = hvalue(o)->metatable) != NULL) || in luaT_objtypename()
|
D | lobject.h | 151 #define ttistable(o) checktag((o), ctb(LUA_TTABLE)) macro 175 #define hvalue(o) check_exp(ttistable(o), gco2t(val_(o).gc))
|
D | lvm.c | 166 lua_assert(!ttistable(t)); in luaV_finishget()
|