Home
last modified time | relevance | path

Searched refs:re_add_state (Results 1 – 1 of 1) sorted by relevance

/freebsd-head/contrib/sqlite3/
HDshell.c6431 static void re_add_state(ReStateSet *pSet, int newState){ in re_add_state() function
6531 re_add_state(pNext, 0); in re_match()
6543 if( pRe->aArg[x]==c ) re_add_state(pNext, x+1); in re_match()
6547 if( cPrev==RE_START ) re_add_state(pThis, x+1); in re_match()
6551 if( c!=0 ) re_add_state(pNext, x+1); in re_match()
6555 if( re_word_char(c) ) re_add_state(pNext, x+1); in re_match()
6559 if( !re_word_char(c) && c!=0 ) re_add_state(pNext, x+1); in re_match()
6563 if( re_digit_char(c) ) re_add_state(pNext, x+1); in re_match()
6567 if( !re_digit_char(c) && c!=0 ) re_add_state(pNext, x+1); in re_match()
6571 if( re_space_char(c) ) re_add_state(pNext, x+1); in re_match()
[all …]