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

  /external/chromium_org/third_party/skia/third_party/lua/src/
lua.h 131 LUA_API lua_State *(lua_newstate) (lua_Alloc f, void *ud);
132 LUA_API void (lua_close) (lua_State *L);
133 LUA_API lua_State *(lua_newthread) (lua_State *L);
135 LUA_API lua_CFunction (lua_atpanic) (lua_State *L, lua_CFunction panicf);
138 LUA_API const lua_Number *(lua_version) (lua_State *L);
144 LUA_API int (lua_absindex) (lua_State *L, int idx);
145 LUA_API int (lua_gettop) (lua_State *L);
146 LUA_API void (lua_settop) (lua_State *L, int idx);
147 LUA_API void (lua_pushvalue) (lua_State *L, int idx);
148 LUA_API void (lua_remove) (lua_State *L, int idx)
    [all...]
lapi.c 92 LUA_API int lua_checkstack (lua_State *L, int size) {
112 LUA_API void lua_xmove (lua_State *from, lua_State *to, int n) {
127 LUA_API lua_CFunction lua_atpanic (lua_State *L, lua_CFunction panicf) {
137 LUA_API const lua_Number *lua_version (lua_State *L) {
153 LUA_API int lua_absindex (lua_State *L, int idx) {
160 LUA_API int lua_gettop (lua_State *L) {
165 LUA_API void lua_settop (lua_State *L, int idx) {
182 LUA_API void lua_remove (lua_State *L, int idx) {
193 LUA_API void lua_insert (lua_State *L, int idx) {
217 LUA_API void lua_replace (lua_State *L, int idx)
    [all...]
luaconf.h 135 @@ LUA_API is a mark for all core API functions.
146 #define LUA_API __declspec(dllexport)
148 #define LUA_API __declspec(dllimport)
153 #define LUA_API extern
159 #define LUALIB_API LUA_API
ldebug.c 53 LUA_API int lua_sethook (lua_State *L, lua_Hook func, int mask, int count) {
68 LUA_API lua_Hook lua_gethook (lua_State *L) {
73 LUA_API int lua_gethookmask (lua_State *L) {
78 LUA_API int lua_gethookcount (lua_State *L) {
83 LUA_API int lua_getstack (lua_State *L, int level, lua_Debug *ar) {
144 LUA_API const char *lua_getlocal (lua_State *L, const lua_Debug *ar, int n) {
166 LUA_API const char *lua_setlocal (lua_State *L, const lua_Debug *ar, int n) {
266 LUA_API int lua_getinfo (lua_State *L, const char *what, lua_Debug *ar) {
lstate.c 233 LUA_API lua_State *lua_newthread (lua_State *L) {
262 LUA_API lua_State *lua_newstate (lua_Alloc f, void *ud) {
315 LUA_API void lua_close (lua_State *L) {
ldo.c 528 LUA_API int lua_resume (lua_State *L, lua_State *from, int nargs) {
559 LUA_API int lua_yieldk (lua_State *L, int nresults, int ctx, lua_CFunction k) {

Completed in 182 milliseconds