Home
last modified time | relevance | path

Searched refs:lua_isnoneornil (Results 1 – 10 of 10) sorted by relevance

/external/chromium_org/third_party/skia/third_party/lua/src/
Dldblib.c63 if (!lua_isnoneornil(L, 2)) in db_setuservalue()
300 if (lua_isnoneornil(L, arg+1)) { in db_sethook()
363 if (msg == NULL && !lua_isnoneornil(L, arg + 1)) /* non-string 'msg'? */ in db_traceback()
Dlmathlib.c121 if (lua_isnoneornil(L, 2)) in math_log()
Dltablib.c250 if (!lua_isnoneornil(L, 2)) /* is there a 2nd argument? */ in sort()
Dloslib.c243 if (lua_isnoneornil(L, 1)) /* called without args? */ in os_time()
Dlauxlib.h132 #define luaL_opt(L,f,n,d) (lua_isnoneornil(L,(n)) ? (d) : f(L,(n)))
Dlbaselib.c49 if (lua_isnoneornil(L, 2)) { /* standard conversion */ in luaB_tonumber()
Dlua.c164 else if (!lua_isnoneornil(L, 1)) { /* is there an error object? */ in traceback()
Dlua.h338 #define lua_isnoneornil(L, n) (lua_type(L, (n)) <= 0) macro
Dliolib.c273 if (!lua_isnoneornil(L, 1)) { in g_iofile()
Dlauxlib.c366 if (lua_isnoneornil(L, narg)) { in luaL_optlstring()