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

  /external/chromium_org/third_party/skia/third_party/lua/src/
lauxlib.h 43 LUALIB_API lua_Integer (luaL_checkinteger) (lua_State *L, int numArg);
44 LUALIB_API lua_Integer (luaL_optinteger) (lua_State *L, int nArg,
45 lua_Integer def);
llimits.h 195 ** lua_number2integer is a macro to convert lua_Number to lua_Integer.
239 /* the trick can be expanded to lua_Integer when it is a 32-bit value */
241 #define lua_number2integer(i,n) lua_number2int32(i, n, lua_Integer)
254 #define lua_number2integer(i,n) ((i)=(lua_Integer)(n))
lua.h 107 typedef LUA_INTEGER lua_Integer;
169 LUA_API lua_Integer (lua_tointegerx) (lua_State *L, int idx, int *isnum);
207 LUA_API void (lua_pushinteger) (lua_State *L, lua_Integer n);
lauxlib.c 389 LUALIB_API lua_Integer luaL_checkinteger (lua_State *L, int narg) {
391 lua_Integer d = lua_tointegerx(L, narg, &isnum);
407 LUALIB_API lua_Integer luaL_optinteger (lua_State *L, int narg,
408 lua_Integer def) {
lstrlib.c 40 lua_pushinteger(L, (lua_Integer)l);
657 lua_Integer newstart = e-s;
lapi.c 349 LUA_API lua_Integer lua_tointegerx (lua_State *L, int idx, int *isnum) {
353 lua_Integer res;
483 LUA_API void lua_pushinteger (lua_State *L, lua_Integer n) {
liolib.c 569 lua_Integer sz = luaL_optinteger(L, 3, LUAL_BUFFERSIZE);

Completed in 64 milliseconds