Lines Matching refs:sIn

152   ReInput sIn;                /* Regular expression text */  member
446 if( p->sIn.i>=p->sIn.mx ) return 0; in re_esc_char()
447 c = p->sIn.z[p->sIn.i]; in re_esc_char()
448 if( c=='u' && p->sIn.i+4<p->sIn.mx ){ in re_esc_char()
449 const unsigned char *zIn = p->sIn.z + p->sIn.i; in re_esc_char()
455 p->sIn.i += 5; in re_esc_char()
459 if( c=='x' && p->sIn.i+2<p->sIn.mx ){ in re_esc_char()
460 const unsigned char *zIn = p->sIn.z + p->sIn.i; in re_esc_char()
464 p->sIn.i += 3; in re_esc_char()
471 p->sIn.i++; in re_esc_char()
483 return p->sIn.i<p->sIn.mx ? p->sIn.z[p->sIn.i] : 0; in rePeek()
500 p->sIn.i++; in re_subcompile_re()
517 while( (c = p->xNextChar(&p->sIn))!=0 ){ in re_subcompile_string()
522 p->sIn.i--; in re_subcompile_string()
529 p->sIn.i++; in re_subcompile_string()
535 p->sIn.i++; in re_subcompile_string()
569 while( (c=rePeek(p))>='0' && c<='9' ){ m = m*10 + c - '0'; p->sIn.i++; } in re_subcompile_string()
572 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()
578 p->sIn.i++; in re_subcompile_string()
601 p->sIn.i++; in re_subcompile_string()
605 while( (c = p->xNextChar(&p->sIn))!=0 ){ in re_subcompile_string()
612 p->sIn.i++; in re_subcompile_string()
613 c = p->xNextChar(&p->sIn); in re_subcompile_string()
619 if( rePeek(p)==']' ){ p->sIn.i++; break; } in re_subcompile_string()
637 p->sIn.i++; in re_subcompile_string()
694 pRe->sIn.z = (unsigned char*)zIn; in re_compile()
695 pRe->sIn.i = 0; in re_compile()
696 pRe->sIn.mx = (int)strlen(zIn); in re_compile()
702 if( pRe->sIn.i>=pRe->sIn.mx ){ in re_compile()