Lines Matching refs:LexState

54 static l_noret lexerror (LexState *ls, const char *msg, int token);
57 static void save (LexState *ls, int c) { in save()
82 const char *luaX_token2str (LexState *ls, int token) { in luaX_token2str()
99 static const char *txtToken (LexState *ls, int token) { in txtToken()
111 static l_noret lexerror (LexState *ls, const char *msg, int token) { in lexerror()
119 l_noret luaX_syntaxerror (LexState *ls, const char *msg) { in luaX_syntaxerror()
134 TString *luaX_newstring (LexState *ls, const char *str, size_t l) { in luaX_newstring()
156 static void inclinenumber (LexState *ls) { in inclinenumber()
167 void luaX_setinput (lua_State *L, LexState *ls, ZIO *z, TString *source, in luaX_setinput()
191 static int check_next1 (LexState *ls, int c) { in check_next1()
204 static int check_next2 (LexState *ls, const char *set) { in check_next2()
227 static int read_numeral (LexState *ls, SemInfo *seminfo) { in read_numeral()
265 static size_t skip_sep (LexState *ls) { in skip_sep()
280 static void read_long_string (LexState *ls, SemInfo *seminfo, size_t sep) { in read_long_string()
319 static void esccheck (LexState *ls, int c, const char *msg) { in esccheck()
328 static int gethexa (LexState *ls) { in gethexa()
335 static int readhexaesc (LexState *ls) { in readhexaesc()
343 static unsigned long readutf8esc (LexState *ls) { in readutf8esc()
361 static void utf8esc (LexState *ls) { in utf8esc()
369 static int readdecesc (LexState *ls) { in readdecesc()
382 static void read_string (LexState *ls, int del, SemInfo *seminfo) { in read_string()
445 static int llex (LexState *ls, SemInfo *seminfo) { in llex()
565 void luaX_next (LexState *ls) { in luaX_next()
576 int luaX_lookahead (LexState *ls) { in luaX_lookahead()