Lines Matching refs:state
62 enum state enum
75 int state; /* if in this state */ member
271 for (fp = fsm; fp->state >= 0; fp++) in expandlex()
283 bigfsm[j][fp->state] = (short) nstate; in expandlex()
293 bigfsm[j][fp->state] = (short) nstate; in expandlex()
297 bigfsm[j][fp->state] = (short) nstate; in expandlex()
300 bigfsm[fp->ch[i]][fp->state] = (short) nstate; in expandlex()
342 register int c, state, oldstate; in gettokens() local
383 state = START; in gettokens()
386 oldstate = state; in gettokens()
390 if ((state = bigfsm[c][state]) >= 0) in gettokens()
396 state = ~state; in gettokens()
398 switch (state & 0177) in gettokens()
404 tp->type = (unsigned char) GETACT(state); in gettokens()
419 state = START; in gettokens()
423 if ((state & QBSBIT) == 0) in gettokens()
429 state &= ~QBSBIT; in gettokens()
457 state = oldstate; in gettokens()
465 state = oldstate; in gettokens()
475 state = oldstate; in gettokens()
488 state = oldstate; in gettokens()
518 state = COM2; in gettokens()
532 state = START; in gettokens()