Lines Matching refs:sIn
6419 ReInput sIn; /* Regular expression text */ member
6713 if( p->sIn.i>=p->sIn.mx ) return 0; in re_esc_char()
6714 c = p->sIn.z[p->sIn.i]; in re_esc_char()
6715 if( c=='u' && p->sIn.i+4<p->sIn.mx ){ in re_esc_char()
6716 const unsigned char *zIn = p->sIn.z + p->sIn.i; in re_esc_char()
6722 p->sIn.i += 5; in re_esc_char()
6726 if( c=='x' && p->sIn.i+2<p->sIn.mx ){ in re_esc_char()
6727 const unsigned char *zIn = p->sIn.z + p->sIn.i; in re_esc_char()
6731 p->sIn.i += 3; in re_esc_char()
6738 p->sIn.i++; in re_esc_char()
6750 return p->sIn.i<p->sIn.mx ? p->sIn.z[p->sIn.i] : 0; in rePeek()
6767 p->sIn.i++; in re_subcompile_re()
6784 while( (c = p->xNextChar(&p->sIn))!=0 ){ in re_subcompile_string()
6789 p->sIn.i--; in re_subcompile_string()
6796 p->sIn.i++; in re_subcompile_string()
6802 p->sIn.i++; in re_subcompile_string()
6836 while( (c=rePeek(p))>='0' && c<='9' ){ m = m*10 + c - '0'; p->sIn.i++; } in re_subcompile_string()
6839 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()
6845 p->sIn.i++; in re_subcompile_string()
6868 p->sIn.i++; in re_subcompile_string()
6872 while( (c = p->xNextChar(&p->sIn))!=0 ){ in re_subcompile_string()
6879 p->sIn.i++; in re_subcompile_string()
6880 c = p->xNextChar(&p->sIn); in re_subcompile_string()
6886 if( rePeek(p)==']' ){ p->sIn.i++; break; } in re_subcompile_string()
6904 p->sIn.i++; in re_subcompile_string()
6961 pRe->sIn.z = (unsigned char*)zIn; in re_compile()
6962 pRe->sIn.i = 0; in re_compile()
6963 pRe->sIn.mx = (int)strlen(zIn); in re_compile()
6969 if( pRe->sIn.i>=pRe->sIn.mx ){ in re_compile()