Home
last modified time | relevance | path

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

/external/lua/src/
Dlua.h63 #define LUA_TNONE (-1) macro
378 #define lua_isnone(L,n) (lua_type(L, (n)) == LUA_TNONE)
Dldblib.c69 else if (lua_getiuservalue(L, 1, n) != LUA_TNONE) { in db_getuservalue()
Dlbaselib.c245 luaL_argcheck(L, t != LUA_TNONE, 1, "value expected"); in luaB_type()
Dlapi.c262 return (isvalid(L, o) ? ttype(o) : LUA_TNONE); in lua_type()
268 api_check(L, LUA_TNONE <= t && t < LUA_NUMTYPES, "invalid type"); in lua_typename()
776 t = LUA_TNONE; in lua_getiuservalue()
Dlauxlib.c397 if (lua_type(L, arg) == LUA_TNONE) in luaL_checkany()