Lines Matching refs:statep

150 	if (++statep == state_info.end)				\
151 statep = push_state_i(&state_info, statep); \
152 state = statep->type = (s); \
156 if (--statep == state_info.base) \
157 statep = pop_state_i(&state_info, statep); \
158 state = statep->type; \
165 statep->ls_start = Xsavepos(ws, wp); \
173 wp = Xrestpos(ws, wp, statep->ls_start); \
193 Lex_state states[STATE_BSIZE], *statep, *s2, *base; in yylex() local
204 statep = &states[1]; in yylex()
219 statep->nparen = 0; in yylex()
242 statep->type = state; in yylex()
256 statep->nparen++; in yylex()
258 statep->nparen--; in yylex()
259 else if (statep->nparen == 0 && (c == /*{*/ '}' || in yylex()
260 c == (int)statep->ls_adelim.delimiter)) { in yylex()
263 if (c == /*{*/ '}' || --statep->ls_adelim.num == 0) in yylex()
396 statep->nparen = 2; in yylex()
443 statep->ls_adelim.delimiter = ':'; in yylex()
444 statep->ls_adelim.num = 1; in yylex()
445 statep->nparen = 0; in yylex()
459 statep->ls_adelim.delimiter = ':'; in yylex()
460 statep->ls_adelim.num = 2; in yylex()
461 statep->nparen = 0; in yylex()
476 statep->ls_adelim.delimiter = '/'; in yylex()
477 statep->ls_adelim.num = 1; in yylex()
478 statep->nparen = 0; in yylex()
544 statep->ls_bool = false; in yylex()
545 s2 = statep; in yylex()
550 statep->ls_bool = true; in yylex()
584 statep->ls_bool = true; in yylex()
585 if (!statep->ls_bool) { in yylex()
601 } else if (!statep->ls_bool) { in yylex()
631 statep->nparen++; in yylex()
633 statep->nparen--; in yylex()
634 if (statep->nparen == 1) { in yylex()
739 if (statep->ls_bool) { in yylex()
760 if (statep->nparen > 0) in yylex()
761 --statep->nparen; in yylex()
792 ++statep->nparen; in yylex()
817 statep->ls_bool = false; in yylex()
864 state = statep->type = SHEREDELIM; in yylex()
886 if (statep != &states[1]) in yylex()