Home
last modified time | relevance | path

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

/sqlite-3.40.0/ext/misc/
H A Dregexp.c482 static unsigned char rePeek(ReCompiled *p){ in rePeek() function
496 while( rePeek(p)=='|' ){ in re_subcompile_re()
528 if( rePeek(p)!=')' ) return "unmatched '('"; in re_subcompile_string()
533 if( rePeek(p)=='*' ){ in re_subcompile_string()
569 while( (c=rePeek(p))>='0' && c<='9' ){ m = m*10 + c - '0'; p->sIn.i++; } in re_subcompile_string()
574 while( (c=rePeek(p))>='0' && c<='9' ){ n = n*10 + c-'0'; p->sIn.i++; } in re_subcompile_string()
599 if( rePeek(p)=='^' ){ in re_subcompile_string()
606 if( c=='[' && rePeek(p)==':' ){ in re_subcompile_string()
610 if( rePeek(p)=='-' ){ in re_subcompile_string()
619 if( rePeek(p)==']' ){ p->sIn.i++; break; } in re_subcompile_string()
[all …]