Lines Matching refs:re_add_state
164 static void re_add_state(ReStateSet *pSet, int newState){ in re_add_state() function
264 re_add_state(pNext, 0); in re_match()
276 if( pRe->aArg[x]==c ) re_add_state(pNext, x+1); in re_match()
280 if( cPrev==RE_START ) re_add_state(pThis, x+1); in re_match()
284 if( c!=0 ) re_add_state(pNext, x+1); in re_match()
288 if( re_word_char(c) ) re_add_state(pNext, x+1); in re_match()
292 if( !re_word_char(c) && c!=0 ) re_add_state(pNext, x+1); in re_match()
296 if( re_digit_char(c) ) re_add_state(pNext, x+1); in re_match()
300 if( !re_digit_char(c) && c!=0 ) re_add_state(pNext, x+1); in re_match()
304 if( re_space_char(c) ) re_add_state(pNext, x+1); in re_match()
308 if( !re_space_char(c) && c!=0 ) re_add_state(pNext, x+1); in re_match()
312 if( re_word_char(c)!=re_word_char(cPrev) ) re_add_state(pThis, x+1); in re_match()
316 re_add_state(pNext, x); in re_match()
317 re_add_state(pThis, x+1); in re_match()
321 re_add_state(pThis, x+pRe->aArg[x]); in re_match()
322 re_add_state(pThis, x+1); in re_match()
326 re_add_state(pThis, x+pRe->aArg[x]); in re_match()
357 if( hit ) re_add_state(pNext, x+n); in re_match()