Lines Matching refs:sIn

7201   ReInput sIn;                /* Regular expression text */  member
7495 if( p->sIn.i>=p->sIn.mx ) return 0; in re_esc_char()
7496 c = p->sIn.z[p->sIn.i]; in re_esc_char()
7497 if( c=='u' && p->sIn.i+4<p->sIn.mx ){ in re_esc_char()
7498 const unsigned char *zIn = p->sIn.z + p->sIn.i; in re_esc_char()
7504 p->sIn.i += 5; in re_esc_char()
7508 if( c=='x' && p->sIn.i+2<p->sIn.mx ){ in re_esc_char()
7509 const unsigned char *zIn = p->sIn.z + p->sIn.i; in re_esc_char()
7513 p->sIn.i += 3; in re_esc_char()
7520 p->sIn.i++; in re_esc_char()
7532 return p->sIn.i<p->sIn.mx ? p->sIn.z[p->sIn.i] : 0; in rePeek()
7549 p->sIn.i++; in re_subcompile_re()
7566 while( (c = p->xNextChar(&p->sIn))!=0 ){ in re_subcompile_string()
7571 p->sIn.i--; in re_subcompile_string()
7578 p->sIn.i++; in re_subcompile_string()
7584 p->sIn.i++; in re_subcompile_string()
7618 while( (c=rePeek(p))>='0' && c<='9' ){ m = m*10 + c - '0'; p->sIn.i++; } in re_subcompile_string()
7621 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()
7627 p->sIn.i++; in re_subcompile_string()
7650 p->sIn.i++; in re_subcompile_string()
7654 while( (c = p->xNextChar(&p->sIn))!=0 ){ in re_subcompile_string()
7661 p->sIn.i++; in re_subcompile_string()
7662 c = p->xNextChar(&p->sIn); in re_subcompile_string()
7668 if( rePeek(p)==']' ){ p->sIn.i++; break; } in re_subcompile_string()
7686 p->sIn.i++; in re_subcompile_string()
7744 pRe->sIn.z = (unsigned char*)zIn; in re_compile()
7745 pRe->sIn.i = 0; in re_compile()
7746 pRe->sIn.mx = (int)strlen(zIn); in re_compile()
7752 if( pRe->sIn.i>=pRe->sIn.mx ){ in re_compile()