Searched refs:lua_copy (Results 1 – 4 of 4) sorted by relevance
/external/lua/src/ |
D | lua.h | 172 LUA_API void (lua_copy) (lua_State *L, int fromidx, int toidx); variable 393 #define lua_replace(L,idx) (lua_copy(L, -1, (idx)), lua_pop(L, 1))
|
D | lauxlib.c | 89 lua_copy(L, -1, top + 1); /* copy name to proper place */ in pushglobalfuncname() 588 lua_copy(L, -1, -3); /* move string to reserved slot */ in luaL_pushresult()
|
D | loadlib.c | 676 lua_copy(L, -1, -2); /* replace loader result */ in ll_require()
|
D | lapi.c | 231 LUA_API void lua_copy (lua_State *L, int fromidx, int toidx) { in lua_copy() function
|