| /f-stack/app/redis-5.0.5/deps/lua/src/ |
| H A D | lua.c | 46 " -e stat execute string " LUA_QL("stat") "\n" in print_usage() 47 " -l name require library " LUA_QL("name") "\n" in print_usage() 48 " -i enter interactive mode after executing " LUA_QL("script") "\n" in print_usage() 167 const char *tp = msg + lmsg - (sizeof(LUA_QL("<eof>")) - 1); in incomplete() 168 if (strstr(msg, LUA_QL("<eof>")) == tp) { in incomplete() 228 "error calling " LUA_QL("print") " (%s)", in dotty()
|
| H A D | ltablib.c | 83 luaL_error(L, LUA_QL("setn") " is obsolete"); in setn() 109 return luaL_error(L, "wrong number of arguments to " LUA_QL("insert")); in tinsert() 139 LUA_QL("concat"), luaL_typename(L, -1), i); in addfield()
|
| H A D | lstrlib.c | 206 luaL_error(ms->L, "malformed pattern (ends with " LUA_QL("%%") ")"); in classend() 213 luaL_error(ms->L, "malformed pattern (missing " LUA_QL("]") ")"); in classend() 388 luaL_error(ms->L, "missing " LUA_QL("[") " after " in match() 389 LUA_QL("%%f") " in pattern"); in match() 585 return luaL_error(L, LUA_QL("string.gfind") " was renamed to " in gfind_nodef() 586 LUA_QL("string.gmatch")); in gfind_nodef() 815 return luaL_error(L, "invalid option " LUA_QL("%%%c") " to " in str_format() 816 LUA_QL("format"), *(strfrmt - 1)); in str_format()
|
| H A D | luaconf.h | 201 #define LUA_QL(x) "'" x "'" macro 202 #define LUA_QS LUA_QL("%s") 681 luaL_error(L, LUA_QL("popen") " not supported"), (FILE*)0)
|
| H A D | luac.c | 59 " -o name output to file " LUA_QL("name") " (default is \"%s\")\n" in usage() 92 if (output==NULL || *output==0) usage(LUA_QL("-o") " needs argument"); in doargs()
|
| H A D | loadlib.c | 358 luaL_error(L, LUA_QL("package.%s") " must be a string", pname); in findfile() 439 luaL_error(L, LUA_QL("package.preload") " must be a table"); in loader_preload() 465 luaL_error(L, LUA_QL("package.loaders") " must be a table"); in ll_require() 512 luaL_error(L, LUA_QL("module") " not called from a Lua function"); in setfenv()
|
| H A D | lbaselib.c | 42 return luaL_error(L, LUA_QL("tostring") " must return a string to " in luaB_print() 43 LUA_QL("print")); in luaB_print() 156 LUA_QL("setfenv") " cannot change environment of given object"); in luaB_setfenv()
|
| H A D | lvm.c | 672 luaG_runerror(L, LUA_QL("for") " initial value must be a number"); in luaV_execute() 674 luaG_runerror(L, LUA_QL("for") " limit must be a number"); in luaV_execute() 676 luaG_runerror(L, LUA_QL("for") " step must be a number"); in luaV_execute()
|
| H A D | lparser.c | 566 default: luaX_syntaxerror(ls, "<name> or " LUA_QL("...") " expected"); in parlist() 755 "cannot use " LUA_QL("...") " outside a vararg function"); in simpleexp() 1123 default: luaX_syntaxerror(ls, LUA_QL("=") " or " LUA_QL("in") " expected"); in forstat()
|
| H A D | ldblib.c | 58 luaL_error(L, LUA_QL("setfenv") in db_setfenv()
|
| H A D | ltable.c | 156 luaG_runerror(L, "invalid key to " LUA_QL("next")); /* key not found */ in findindex()
|
| /f-stack/freebsd/contrib/openzfs/module/lua/ |
| H A D | lstrlib.c | 257 luaL_error(ms->L, "malformed pattern (ends with " LUA_QL("%%") ")"); in classend() 264 luaL_error(ms->L, "malformed pattern (missing " LUA_QL("]") ")"); in classend() 340 "(missing arguments to " LUA_QL("%%b") ")"); in matchbalance() 457 luaL_error(ms->L, "missing " LUA_QL("[") " after " in match() 458 LUA_QL("%%f") " in pattern"); in match() 700 luaL_error(ms->L, "invalid use of " LUA_QL("%c") in add_s() 979 return luaL_error(L, "invalid option " LUA_QL("%%%c") " to " in str_format() 980 LUA_QL("format"), *(strfrmt - 1)); in str_format()
|
| H A D | lobject.c | 214 "invalid option " LUA_QL("%%%c") " to " LUA_QL("lua_pushfstring"), in luaO_pushvfstring()
|
| H A D | ltablib.c | 59 return luaL_error(L, "wrong number of arguments to " LUA_QL("insert")); in tinsert() 87 LUA_QL("concat"), luaL_typename(L, -1), i); in addfield()
|
| H A D | lvm.c | 847 luaG_runerror(L, LUA_QL("for") " initial value must be a number"); in luaV_execute() 849 luaG_runerror(L, LUA_QL("for") " limit must be a number"); in luaV_execute() 851 luaG_runerror(L, LUA_QL("for") " step must be a number"); in luaV_execute()
|
| H A D | lparser.c | 782 default: luaX_syntaxerror(ls, "<name> or " LUA_QL("...") " expected"); in parlist() 969 "cannot use " LUA_QL("...") " outside a vararg function"); in simpleexp() 1371 default: luaX_syntaxerror(ls, LUA_QL("=") " or " LUA_QL("in") " expected"); in forstat()
|
| H A D | llex.c | 75 return (lisprint(token)) ? luaO_pushfstring(ls->L, LUA_QL("%c"), token) : in luaX_token2str()
|
| H A D | ltable.c | 163 luaG_runerror(L, "invalid key to " LUA_QL("next")); /* key not found */ in findindex()
|
| /f-stack/freebsd/contrib/openzfs/include/sys/lua/ |
| H A D | luaconf.h | 200 #define LUA_QL(x) "'" x "'" macro 201 #define LUA_QS LUA_QL("%s")
|