Home
last modified time | relevance | path

Searched refs:lexstate (Results 1 – 2 of 2) sorted by relevance

/netbsd/src/external/bsd/pcc/dist/pcc/f77/fcom/
Dlex.c72 LOCAL int lexstate = NEWSTMT; variable
116 lexstate = NEWSTMT; in inilex()
126 lexstate = RETEOS; in flline()
223 switch(lexstate) in yylex()
230 lexstate = FIRSTTOKEN; in yylex()
239 lexstate = OTHERTOKEN; in yylex()
258 lexstate = NEWSTMT; in yylex()
261 fatal1("impossible lexstate %d", lexstate); in yylex()
/netbsd/src/external/mit/lua/dist/src/
Dlparser.c1958 LexState lexstate; in luaY_parser() local
1963 lexstate.h = luaH_new(L); /* create table for scanner */ in luaY_parser()
1964 sethvalue2s(L, L->top.p, lexstate.h); /* anchor it */ in luaY_parser()
1970 lexstate.buff = buff; in luaY_parser()
1971 lexstate.dyd = dyd; in luaY_parser()
1973 luaX_setinput(L, &lexstate, z, funcstate.f->source, firstchar); in luaY_parser()
1974 mainfunc(&lexstate, &funcstate); in luaY_parser()
1975 lua_assert(!funcstate.prev && funcstate.nups == 1 && !lexstate.fs); in luaY_parser()