Home
last modified time | relevance | path

Searched refs:re_nsub (Results 1 – 13 of 13) sorted by relevance

/PHP-5.5/ext/pcre/pcrelib/
H A Dpcreposix.c274 int re_nsub = 0; in regcomp() local
298 &re_nsub); in regcomp()
299 preg->re_nsub = (size_t)re_nsub; in regcomp()
H A Dpcreposix.h99 size_t re_nsub; member
H A DChangeLog997 13. In the POSIX wrapper regcomp() function, setting re_nsub field in the preg
/PHP-5.5/ext/ereg/
H A Dereg.c339 subs = (regmatch_t *)ecalloc(sizeof(regmatch_t),re.re_nsub+1); in php_ereg()
342 err = regexec(&re, string, re.re_nsub+1, subs, 0); in php_ereg()
360 for (i = 0; i <= re.re_nsub; i++) { in php_ereg()
433 subs = (regmatch_t *)ecalloc(sizeof(regmatch_t),re.re_nsub+1); in php_ereg_replace()
443 err = regexec(&re, &string[pos], re.re_nsub+1, subs, (pos ? REG_NOTBOL : 0)); in php_ereg_replace()
464 …== *walk && isdigit((unsigned char)walk[1]) && ((unsigned char)walk[1]) - '0' <= (int)re.re_nsub) { in php_ereg_replace()
490 …' == *walk && isdigit((unsigned char)walk[1]) && (unsigned char)walk[1] - '0' <= (int)re.re_nsub) { in php_ereg_replace()
/PHP-5.5/ext/mbstring/oniguruma/
H A Dregposix.c161 reg->re_nsub = ONIG_C(reg)->num_mem; in regcomp()
216 if (reg->re_nsub > nmatch - 1) in regexec()
217 reg->re_nsub = (nmatch <= 1 ? 0 : nmatch - 1); in regexec()
H A Donigposix.h85 size_t re_nsub; member
H A Dtestc.c51 r = regexec(&reg, str, reg.re_nsub + 1, pmatch, 0); in xx()
H A Dtestu.c79 r = regexec(&reg, str, reg.re_nsub + 1, pmatch, 0); in xx()
/PHP-5.5/ext/ereg/regex/
H A Dregex.h22 size_t re_nsub; /* number of parenthesized subexpressions */ member
H A Dregcomp.c180 preg->re_nsub = g->nsub;
/PHP-5.5/ext/mbstring/oniguruma/win32/
H A Dtestc.c51 r = regexec(&reg, str, reg.re_nsub + 1, pmatch, 0); in xx()
/PHP-5.5/ext/pgsql/
H A Dpgsql.c5360 subs = (regmatch_t *)ecalloc(sizeof(regmatch_t), re.re_nsub+1);
5362 regerr = regexec(&re, str, re.re_nsub+1, subs, 0);
/PHP-5.5/ext/pcre/pcrelib/doc/
H A Dpcre.txt9641 is public: re_nsub contains the number of capturing subpatterns in the

Completed in 97 milliseconds