Searched refs:luaS_newlstr (Results 1 – 7 of 7) sorted by relevance
/external/lua/src/ |
D | lstring.h | 20 #define luaS_newliteral(L, s) (luaS_newlstr(L, "" s, \ 44 LUAI_FUNC TString *luaS_newlstr (lua_State *L, const char *str, size_t l);
|
D | lstring.c | 199 TString *luaS_newlstr (lua_State *L, const char *str, size_t l) { in luaS_newlstr() function 231 p[0] = luaS_newlstr(L, str, strlen(str)); in luaS_new()
|
D | lobject.c | 386 setsvalue2s(L, obj, luaS_newlstr(L, buff, len)); in luaO_tostring() 391 setsvalue2s(L, L->top, luaS_newlstr(L, str, l)); in pushstr()
|
D | lundump.c | 97 return luaS_newlstr(S->L, buff, size); in LoadString()
|
D | llex.c | 130 TString *ts = luaS_newlstr(L, str, l); /* create new string */ in luaX_newstring()
|
D | lapi.c | 482 ts = (len == 0) ? luaS_new(L, "") : luaS_newlstr(L, s, len); in lua_pushlstring() 1147 setsvalue2s(L, L->top, luaS_newlstr(L, "", 0)); in lua_concat()
|
D | lvm.c | 500 ts = luaS_newlstr(L, buff, tl); in luaV_concat()
|