Searched refs:luaS_newlstr (Results 1 – 7 of 7) sorted by relevance
/l4re-core-master/lua/lib/contrib/src/ |
A D | lstring.h | 28 #define luaS_newliteral(L, s) (luaS_newlstr(L, "" s, \ 52 LUAI_FUNC TString *luaS_newlstr (lua_State *L, const char *str, size_t l);
|
A D | lstring.c | 221 TString *luaS_newlstr (lua_State *L, const char *str, size_t l) { in luaS_newlstr() function 253 p[0] = luaS_newlstr(L, str, strlen(str)); in luaS_new()
|
A D | lobject.c | 377 setsvalue(L, obj, luaS_newlstr(L, buff, len)); in luaO_tostring() 407 setsvalue2s(L, L->top, luaS_newlstr(L, str, l)); in pushstr()
|
A D | lundump.c | 119 ts = luaS_newlstr(L, buff, size); /* create string */ in loadStringN()
|
A D | llex.c | 136 TString *ts = luaS_newlstr(L, str, l); /* create new string */ in luaX_newstring()
|
A D | lapi.c | 523 ts = (len == 0) ? luaS_new(L, "") : luaS_newlstr(L, s, len); in lua_pushlstring() 1283 setsvalue2s(L, L->top, luaS_newlstr(L, "", 0)); /* push empty string */ in lua_concat()
|
A D | lvm.c | 666 ts = luaS_newlstr(L, buff, tl); in luaV_concat()
|
Completed in 14 milliseconds