Home | History | Annotate | Download | only in re2c

Lines Matching refs:DFA

10 struct DFA;
81 typedef struct DFA {
87 } DFA;
89 DFA *DFA_new(Ins*, unsigned int, unsigned int, unsigned int, Char*);
90 void DFA_delete(DFA*);
91 void DFA_addState(DFA*, State**, State*);
92 State *DFA_findState(DFA*, Ins**, unsigned int);
93 void DFA_split(DFA*, State*);
95 void DFA_findSCCs(DFA*);
96 void DFA_emit(DFA*, FILE *);
97 void DFA_out(FILE *, const DFA*);