Searched refs:subs (Results 1 – 8 of 8) sorted by relevance
/PHP-5.6/ext/ereg/ |
H A D | ereg.c | 296 regmatch_t *subs; in php_ereg() local 346 efree(subs); in php_ereg() 352 match_len = (int) (subs[0].rm_eo - subs[0].rm_so); in php_ereg() 372 efree(subs); in php_ereg() 406 regmatch_t *subs; in php_ereg_replace() local 447 efree(subs); in php_ereg_replace() 493 && subs[walk[1] - '0'].rm_so <= subs[walk[1] - '0'].rm_eo) { in php_ereg_replace() 507 if (subs[0].rm_so == subs[0].rm_eo) { in php_ereg_replace() 540 efree(subs); in php_ereg_replace() 659 if (subs[0].rm_so == 0 && subs[0].rm_eo) { in php_split() [all …]
|
/PHP-5.6/ext/ereg/regex/ |
H A D | main.c | 33 regmatch_t subs[NS]; local 93 subs[0].rm_so = startoff; 104 len = (int)(subs[0].rm_eo - subs[0].rm_so); 105 if (subs[0].rm_so != -1) { 108 argv[optind] + subs[0].rm_so); 111 argv[optind] + subs[0].rm_so); 114 if (subs[i].rm_so != -1) 116 (int)(subs[i].rm_eo - subs[i].rm_so), 117 argv[optind] + subs[i].rm_so); 214 regmatch_t subs[NSUBS]; local [all …]
|
/PHP-5.6/sapi/phpdbg/ |
H A D | phpdbg_help.c | 266 if (c->subs) { in PHPDBG_HELP() 268 for(c_sub = c->subs; c_sub->alias; c_sub++) { in PHPDBG_HELP() 283 for(c_sub = c->subs; c_sub->alias; c_sub++) { in PHPDBG_HELP()
|
H A D | phpdbg_cmd.h | 99 const phpdbg_command_t *subs; /* Sub Commands */ member
|
H A D | phpdbg_cmd.c | 661 if (command->subs && (*top) && ((*top)->type == STR_PARAM)) { in phpdbg_stack_resolve() 662 return phpdbg_stack_resolve(command->subs, command, top, why); in phpdbg_stack_resolve()
|
/PHP-5.6/ext/phar/phar/ |
H A D | clicommand.inc | 112 static function getSubFuncs(CLICommand $cmdclass, $prefix, array $subs) 120 foreach($subs as $sub) {
|
/PHP-5.6/ext/bcmath/libbcmath/ |
H A D | configure | 1598 s/@@/%@/; s/@@/@%/; s/@g\$/%g/' > conftest.subs <<\\CEOF 1654 sed "1,${ac_beg}d; ${ac_end}q" conftest.subs > conftest.s$ac_file 1656 sed "${ac_end}q" conftest.subs > conftest.s$ac_file
|
/PHP-5.6/ext/pgsql/ |
H A D | pgsql.c | 5702 regmatch_t *subs; local 5726 subs = (regmatch_t *)ecalloc(sizeof(regmatch_t), re.re_nsub+1); 5728 regerr = regexec(&re, str, re.re_nsub+1, subs, 0); 5737 efree(subs);
|
Completed in 31 milliseconds