Lines Matching defs:rePeek
4227 static unsigned char rePeek(ReCompiled *p){
4241 while( rePeek(p)=='|' ){
4273 if( rePeek(p)!=')' ) return "unmatched '('";
4278 if( rePeek(p)=='*' ){
4314 while( (c=rePeek(p))>='0' && c<='9' ){ m = m*10 + c - '0'; p->sIn.i++; }
4319 while( (c=rePeek(p))>='0' && c<='9' ){ n = n*10 + c-'0'; p->sIn.i++; }
4344 if( rePeek(p)=='^' ){
4351 if( c=='[' && rePeek(p)==':' ){
4355 if( rePeek(p)=='-' ){
4364 if( rePeek(p)==']' ){ p->sIn.i++; break; }
4372 switch( rePeek(p) ){