Home
last modified time | relevance | path

Searched refs:ttistable (Results 1 – 5 of 5) sorted by relevance

/external/lua/src/
Dlvm.h59 (!ttistable(t) \
81 (!ttistable(t) \
Dlapi.c651 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()
Dltm.c92 if ((ttistable(o) && (mt = hvalue(o)->metatable) != NULL) || in luaT_objtypename()
Dlobject.h151 #define ttistable(o) checktag((o), ctb(LUA_TTABLE)) macro
175 #define hvalue(o) check_exp(ttistable(o), gco2t(val_(o).gc))
Dlvm.c166 lua_assert(!ttistable(t)); in luaV_finishget()