Lines Matching refs:states
37 xmlAutomataStatePtr states[1000]; in testRegexpFile() local
42 states[i] = NULL; in testRegexpFile()
58 states[0] = xmlAutomataGetInitState(am); in testRegexpFile()
59 if (states[0] == NULL) { in testRegexpFile()
88 if (states[from] == NULL) in testRegexpFile()
89 states[from] = xmlAutomataNewState(am); in testRegexpFile()
97 if (states[to] == NULL) in testRegexpFile()
98 states[to] = xmlAutomataNewState(am); in testRegexpFile()
100 xmlAutomataNewTransition(am, states[from], states[to], in testRegexpFile()
112 if (states[from] == NULL) in testRegexpFile()
113 states[from] = xmlAutomataNewState(am); in testRegexpFile()
116 if (states[to] == NULL) in testRegexpFile()
117 states[to] = xmlAutomataNewState(am); in testRegexpFile()
118 xmlAutomataNewEpsilon(am, states[from], states[to]); in testRegexpFile()
124 if (states[state] == NULL) { in testRegexpFile()
129 xmlAutomataSetFinalState(am, states[state]); in testRegexpFile()
141 if (states[from] == NULL) in testRegexpFile()
142 states[from] = xmlAutomataNewState(am); in testRegexpFile()
150 if (states[to] == NULL) in testRegexpFile()
151 states[to] = xmlAutomataNewState(am); in testRegexpFile()
167 xmlAutomataNewCountTrans(am, states[from], states[to], in testRegexpFile()