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

  /external/chromium_org/third_party/skia/samplecode/
SampleLua.cpp 127 if (lua_pcall(L, 1, 0, 0) != LUA_OK) {
  /external/chromium_org/third_party/skia/third_party/lua/src/
lauxlib.h 125 (luaL_loadfile(L, fn) || lua_pcall(L, 0, LUA_MULTRET, 0))
128 (luaL_loadstring(L, s) || lua_pcall(L, 0, LUA_MULTRET, 0))
lua.c 179 status = lua_pcall(L, narg, nres, base);
314 if (lua_pcall(L, lua_gettop(L)-1, 0, 0) != LUA_OK)
491 status = lua_pcall(L, 2, 1, 0);
luaconf.h 268 lua_pcall(L,1,0,0))
ldblib.c 352 lua_pcall(L, 0, 0, 0))
lua.h 33 /* option for multiple returns in 'lua_pcall' and 'lua_call' */
259 #define lua_pcall(L,n,r,f) lua_pcallk(L, (n), (r), (f), 0, NULL) macro
luac.c 200 if (lua_pcall(L,2,0,0)!=LUA_OK) fatal(lua_tostring(L,-1));
  /external/chromium_org/third_party/skia/tools/lua/
lua_pictures.cpp 60 if (lua_pcall(L, 2, 0, 0) != LUA_OK) {
  /external/chromium_org/third_party/skia/src/utils/
SkLuaCanvas.cpp 31 if (lua_pcall(L, 1, 0, 0) != LUA_OK) {
SkLua.cpp 99 if (lua_pcall(fL, 0, 0, 0) != LUA_OK) {
108 int err = luaL_loadstring(fL, code) || lua_pcall(fL, 0, 0, 0);
    [all...]

Completed in 278 milliseconds