• Home
  • Raw
  • Download

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()
97 static const char *txtToken (LexState *ls, int token) { in txtToken()
109 static l_noret lexerror (LexState *ls, const char *msg, int token) { in lexerror()
117 l_noret luaX_syntaxerror (LexState *ls, const char *msg) { in luaX_syntaxerror()
127 TString *luaX_newstring (LexState *ls, const char *str, size_t l) { in luaX_newstring()
151 static void inclinenumber (LexState *ls) { in inclinenumber()
162 void luaX_setinput (lua_State *L, LexState *ls, ZIO *z, TString *source, in luaX_setinput()
186 static int check_next1 (LexState *ls, int c) { in check_next1()
199 static int check_next2 (LexState *ls, const char *set) { in check_next2()
214 static int read_numeral (LexState *ls, SemInfo *seminfo) { in read_numeral()
251 static int skip_sep (LexState *ls) { in skip_sep()
264 static void read_long_string (LexState *ls, SemInfo *seminfo, int sep) { in read_long_string()
303 static void esccheck (LexState *ls, int c, const char *msg) { in esccheck()
312 static int gethexa (LexState *ls) { in gethexa()
319 static int readhexaesc (LexState *ls) { in readhexaesc()
327 static unsigned long readutf8esc (LexState *ls) { in readutf8esc()
345 static void utf8esc (LexState *ls) { in utf8esc()
353 static int readdecesc (LexState *ls) { in readdecesc()
366 static void read_string (LexState *ls, int del, SemInfo *seminfo) { in read_string()
429 static int llex (LexState *ls, SemInfo *seminfo) { in llex()
549 void luaX_next (LexState *ls) { in luaX_next()
560 int luaX_lookahead (LexState *ls) { in luaX_lookahead()