Lines Matching defs:re_add_state
3909 static void re_add_state(ReStateSet *pSet, int newState){
4009 re_add_state(pNext, 0);
4021 if( pRe->aArg[x]==c ) re_add_state(pNext, x+1);
4025 if( cPrev==RE_START ) re_add_state(pThis, x+1);
4029 if( c!=0 ) re_add_state(pNext, x+1);
4033 if( re_word_char(c) ) re_add_state(pNext, x+1);
4037 if( !re_word_char(c) && c!=0 ) re_add_state(pNext, x+1);
4041 if( re_digit_char(c) ) re_add_state(pNext, x+1);
4045 if( !re_digit_char(c) && c!=0 ) re_add_state(pNext, x+1);
4049 if( re_space_char(c) ) re_add_state(pNext, x+1);
4053 if( !re_space_char(c) && c!=0 ) re_add_state(pNext, x+1);
4057 if( re_word_char(c)!=re_word_char(cPrev) ) re_add_state(pThis, x+1);
4061 re_add_state(pNext, x);
4062 re_add_state(pThis, x+1);
4066 re_add_state(pThis, x+pRe->aArg[x]);
4067 re_add_state(pThis, x+1);
4071 re_add_state(pThis, x+pRe->aArg[x]);
4102 if( hit ) re_add_state(pNext, x+n);