Searched refs:capture_count (Results 1 – 5 of 5) sorted by relevance
/PHP-8.0/ext/pcre/ |
H A D | php_pcre.h | 29 PHPAPI pcre2_code* pcre_get_compiled_regex(zend_string *regex, uint32_t *capture_count); 30 PHPAPI pcre2_code* pcre_get_compiled_regex_ex(zend_string *regex, uint32_t *capture_count, uint32_t…
|
H A D | php_pcre.c | 49 uint32_t capture_count; member 921 if (capture_count) { in pcre_get_compiled_regex() 922 *capture_count = pce ? pce->capture_count : 0; in pcre_get_compiled_regex() 940 if (capture_count) { in pcre_get_compiled_regex_ex() 941 *capture_count = pce ? pce->capture_count : 0; in pcre_get_compiled_regex_ex() 958 if (!capture_count) { in php_pcre_create_match_data() 1253 num_subpats = pce->capture_count + 1; in php_pcre_match_impl() 1638 num_subpats = pce->capture_count + 1; in php_pcre_replace_impl() 1875 num_subpats = pce->capture_count + 1; in php_pcre_replace_func_impl() 2557 num_subpats = pce->capture_count + 1; in php_pcre_split_impl() [all …]
|
/PHP-8.0/ext/filter/ |
H A D | logical_filters.c | 471 uint32_t capture_count; in php_filter_validate_regexp() local 482 re = pcre_get_compiled_regex(regexp, &capture_count); in php_filter_validate_regexp() 486 match_data = php_pcre_create_match_data(capture_count, re); in php_filter_validate_regexp() 671 uint32_t capture_count; in php_filter_validate_email() local 693 re = pcre_get_compiled_regex(sregexp, &capture_count); in php_filter_validate_email() 698 match_data = php_pcre_create_match_data(capture_count, re); in php_filter_validate_email()
|
/PHP-8.0/ext/standard/ |
H A D | browscap.c | 555 uint32_t capture_count; in browser_reg_compare() local 598 re = pcre_get_compiled_regex(regex, &capture_count); in browser_reg_compare() 605 match_data = php_pcre_create_match_data(capture_count, re); in browser_reg_compare()
|
/PHP-8.0/ext/zip/ |
H A D | php_zip.c | 749 uint32_t i, capture_count; in php_zip_pcre() local 752 re = pcre_get_compiled_regex(regexp, &capture_count); in php_zip_pcre() 779 match_data = php_pcre_create_match_data(capture_count, re); in php_zip_pcre()
|
Completed in 32 milliseconds