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

  /external/chromium_org/third_party/skia/third_party/lua/src/
ldblib.c 63 if (!lua_isnoneornil(L, 2))
300 if (lua_isnoneornil(L, arg+1)) {
363 if (msg == NULL && !lua_isnoneornil(L, arg + 1)) /* non-string 'msg'? */
lauxlib.h 132 #define luaL_opt(L,f,n,d) (lua_isnoneornil(L,(n)) ? (d) : f(L,(n)))
lmathlib.c 121 if (lua_isnoneornil(L, 2))
loslib.c 243 if (lua_isnoneornil(L, 1)) /* called without args? */
ltablib.c 250 if (!lua_isnoneornil(L, 2)) /* is there a 2nd argument? */
lbaselib.c 49 if (lua_isnoneornil(L, 2)) { /* standard conversion */
lua.c 164 else if (!lua_isnoneornil(L, 1)) { /* is there an error object? */
lua.h 338 #define lua_isnoneornil(L, n) (lua_type(L, (n)) <= 0) macro
liolib.c 273 if (!lua_isnoneornil(L, 1)) {
lauxlib.c 366 if (lua_isnoneornil(L, narg)) {

Completed in 405 milliseconds