Lines Matching refs:rePeek
7531 static unsigned char rePeek(ReCompiled *p){ in rePeek() function
7545 while( rePeek(p)=='|' ){ in re_subcompile_re()
7577 if( rePeek(p)!=')' ) return "unmatched '('"; in re_subcompile_string()
7582 if( rePeek(p)=='*' ){ in re_subcompile_string()
7618 while( (c=rePeek(p))>='0' && c<='9' ){ m = m*10 + c - '0'; p->sIn.i++; } in re_subcompile_string()
7623 while( (c=rePeek(p))>='0' && c<='9' ){ n = n*10 + c-'0'; p->sIn.i++; } in re_subcompile_string()
7648 if( rePeek(p)=='^' ){ in re_subcompile_string()
7655 if( c=='[' && rePeek(p)==':' ){ in re_subcompile_string()
7659 if( rePeek(p)=='-' ){ in re_subcompile_string()
7668 if( rePeek(p)==']' ){ p->sIn.i++; break; } in re_subcompile_string()
7676 switch( rePeek(p) ){ in re_subcompile_string()