Searched refs:rePeek (Results 1 – 1 of 1) sorted by relevance
6749 static unsigned char rePeek(ReCompiled *p){ in rePeek() function6763 while( rePeek(p)=='|' ){ in re_subcompile_re()6795 if( rePeek(p)!=')' ) return "unmatched '('"; in re_subcompile_string()6800 if( rePeek(p)=='*' ){ in re_subcompile_string()6836 while( (c=rePeek(p))>='0' && c<='9' ){ m = m*10 + c - '0'; p->sIn.i++; } in re_subcompile_string()6841 while( (c=rePeek(p))>='0' && c<='9' ){ n = n*10 + c-'0'; p->sIn.i++; } in re_subcompile_string()6866 if( rePeek(p)=='^' ){ in re_subcompile_string()6873 if( c=='[' && rePeek(p)==':' ){ in re_subcompile_string()6877 if( rePeek(p)=='-' ){ in re_subcompile_string()6886 if( rePeek(p)==']' ){ p->sIn.i++; break; } in re_subcompile_string()[all …]