Searched refs:re_add_state (Results 1 – 1 of 1) sorted by relevance
| /netbsd/src/external/public-domain/sqlite/dist/ |
| D | shell.c | 6361 static void re_add_state(ReStateSet *pSet, int newState){ in re_add_state() function 6461 re_add_state(pNext, 0); in re_match() 6473 if( pRe->aArg[x]==c ) re_add_state(pNext, x+1); in re_match() 6477 if( cPrev==RE_START ) re_add_state(pThis, x+1); in re_match() 6481 if( c!=0 ) re_add_state(pNext, x+1); in re_match() 6485 if( re_word_char(c) ) re_add_state(pNext, x+1); in re_match() 6489 if( !re_word_char(c) && c!=0 ) re_add_state(pNext, x+1); in re_match() 6493 if( re_digit_char(c) ) re_add_state(pNext, x+1); in re_match() 6497 if( !re_digit_char(c) && c!=0 ) re_add_state(pNext, x+1); in re_match() 6501 if( re_space_char(c) ) re_add_state(pNext, x+1); in re_match() [all …]
|