Lines Matching refs:BEGIN
54 "string too long", cbuf); BEGIN A; } }
71 BEGIN A;
74 BEGIN A;
84 <A>BEGIN RETURN(XBEGIN);
124 <A>"}"{WS}*\n { BEGIN sc; lineno++; RETURN(';'); }
125 <A>"}" { BEGIN sc; RETURN(';'); }
155 <A>\" { BEGIN str; clen=0; }
157 <A># { BEGIN comment; }
158 <comment>\n { BEGIN A; lineno++; RETURN(NL); }
163 <reg>"[" { BEGIN chc; clen=0; cflag=0; }
164 <reg>"[^" { BEGIN chc; clen=0; cflag=1; }
184 <reg>"/" { BEGIN A; unput('/'); }
185 <reg>\n { yyerror("newline in regular expression"); lineno++; BEGIN A; }
188 <str>\" { wchar_t *s; BEGIN A; cbuf[clen]=0; s = tostring(cbuf);
192 <str>\n { yyerror("newline in string"); lineno++; BEGIN A; }
209 <chc>"]" { BEGIN reg; cbuf[clen]=0; yylval = (int)tostring(cbuf);
212 <chc>\n { yyerror("newline in character class"); lineno++; BEGIN A; }
239 BEGIN reg;