HomeSort by relevance Sort by last modified time
    Searched refs:LUA_TFUNCTION (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/third_party/skia/third_party/lua/src/
lcorolib.c 84 luaL_checktype(L, 1, LUA_TFUNCTION);
lobject.h 43 ** LUA_TFUNCTION variants:
50 #define LUA_TLCL (LUA_TFUNCTION | (0 << 4)) /* Lua closure */
51 #define LUA_TLCF (LUA_TFUNCTION | (1 << 4)) /* light C function */
52 #define LUA_TCCL (LUA_TFUNCTION | (2 << 4)) /* C closure */
141 #define ttisfunction(o) checktype(o, LUA_TFUNCTION)
142 #define ttisclosure(o) ((rttype(o) & 0x1F) == LUA_TFUNCTION)
ldblib.c 208 luaL_checktype(L, 1, LUA_TFUNCTION);
231 luaL_checktype(L, argf, LUA_TFUNCTION);
306 luaL_checktype(L, arg+1, LUA_TFUNCTION);
lstate.h 208 check_exp(novariant((o)->gch.tt) == LUA_TFUNCTION, &((o)->cl))
lua.h 84 #define LUA_TFUNCTION 6
331 #define lua_isfunction(L,n) (lua_type(L, (n)) == LUA_TFUNCTION)
ltablib.c 251 luaL_checktype(L, 2, LUA_TFUNCTION);
lstrlib.c 176 luaL_checktype(L, 1, LUA_TFUNCTION);
708 case LUA_TFUNCTION: {
746 tr == LUA_TFUNCTION || tr == LUA_TTABLE, 3,
lbaselib.c 321 luaL_checktype(L, 1, LUA_TFUNCTION);

Completed in 206 milliseconds