Home
last modified time | relevance | path

Searched refs:LUA_QL (Results 1 – 8 of 8) sorted by relevance

/illumos-gate/usr/src/uts/common/fs/zfs/lua/
H A Dlstrlib.c269 luaL_error(ms->L, "malformed pattern (ends with " LUA_QL("%%") ")"); in classend()
276 luaL_error(ms->L, "malformed pattern (missing " LUA_QL("]") ")"); in classend()
359 "(missing arguments to " LUA_QL("%%b") ")"); in matchbalance()
476 luaL_error(ms->L, "missing " LUA_QL("[") " after " in match()
477 LUA_QL("%%f") " in pattern"); in match()
719 luaL_error(ms->L, "invalid use of " LUA_QL("%c") in add_s()
998 return luaL_error(L, "invalid option " LUA_QL("%%%c") " to " in str_format()
999 LUA_QL("format"), *(strfrmt - 1)); in str_format()
H A Dluaconf.h199 #define LUA_QL(x) "'" x "'" macro
200 #define LUA_QS LUA_QL("%s")
H A Dlobject.c215 "invalid option " LUA_QL("%%%c") " to " LUA_QL("lua_pushfstring"), in luaO_pushvfstring()
H A Dltablib.c60 return luaL_error(L, "wrong number of arguments to " LUA_QL("insert")); in tinsert()
88 LUA_QL("concat"), luaL_typename(L, -1), i); in addfield()
H A Dlvm.c846 luaG_runerror(L, LUA_QL("for") " initial value must be a number"); in luaV_execute()
848 luaG_runerror(L, LUA_QL("for") " limit must be a number"); in luaV_execute()
850 luaG_runerror(L, LUA_QL("for") " step must be a number"); in luaV_execute()
H A Dlparser.c777 default: luaX_syntaxerror(ls, "<name> or " LUA_QL("...") " expected"); in parlist()
964 "cannot use " LUA_QL("...") " outside a vararg function"); in simpleexp()
1366 default: luaX_syntaxerror(ls, LUA_QL("=") " or " LUA_QL("in") " expected"); in forstat()
H A Dllex.c76 return (lisprint(token)) ? luaO_pushfstring(ls->L, LUA_QL("%c"), token) : in luaX_token2str()
H A Dltable.c163 luaG_runerror(L, "invalid key to " LUA_QL("next")); /* key not found */ in findindex()