Home
last modified time | relevance | path

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

/external/mesa3d/src/freedreno/decode/
Dscript.c618 if (!lua_isfunction(L, -1)) { in script_start_cmdstream()
642 if (!lua_isfunction(L, -1)) { in script_draw()
708 if (!lua_isfunction(L, -1)) { in script_packet()
743 if (!lua_isfunction(L, -1)) { in simple_call()
/external/bcc/src/lua/src/
Dmain.c77 if (!lua_isfunction(L, -1)) { in traceback()
/external/lua/src/
Dldblib.c155 if (lua_isfunction(L, arg + 1)) { /* info about a function? */ in db_getinfo()
206 if (lua_isfunction(L, arg + 1)) { /* function argument? */ in db_getlocal()
Dloadlib.c640 if (lua_isfunction(L, -2)) /* did it find a loader? */ in findloader()
Dlua.h372 #define lua_isfunction(L,n) (lua_type(L, (n)) == LUA_TFUNCTION) macro