Searched refs:lua_isnoneornil (Results 1 – 10 of 10) sorted by relevance
/external/chromium_org/third_party/skia/third_party/lua/src/ |
D | ldblib.c | 63 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()
|
D | lmathlib.c | 121 if (lua_isnoneornil(L, 2)) in math_log()
|
D | ltablib.c | 250 if (!lua_isnoneornil(L, 2)) /* is there a 2nd argument? */ in sort()
|
D | loslib.c | 243 if (lua_isnoneornil(L, 1)) /* called without args? */ in os_time()
|
D | lauxlib.h | 132 #define luaL_opt(L,f,n,d) (lua_isnoneornil(L,(n)) ? (d) : f(L,(n)))
|
D | lbaselib.c | 49 if (lua_isnoneornil(L, 2)) { /* standard conversion */ in luaB_tonumber()
|
D | lua.c | 164 else if (!lua_isnoneornil(L, 1)) { /* is there an error object? */ in traceback()
|
D | lua.h | 338 #define lua_isnoneornil(L, n) (lua_type(L, (n)) <= 0) macro
|
D | liolib.c | 273 if (!lua_isnoneornil(L, 1)) { in g_iofile()
|
D | lauxlib.c | 366 if (lua_isnoneornil(L, narg)) { in luaL_optlstring()
|