Home
last modified time | relevance | path

Searched refs:capture_count (Results 1 – 5 of 5) sorted by relevance

/PHP-8.3/ext/filter/
H A Dlogical_filters.c479 uint32_t capture_count; in php_filter_validate_regexp() local
490 re = pcre_get_compiled_regex(regexp, &capture_count); in php_filter_validate_regexp()
494 match_data = php_pcre_create_match_data(capture_count, re); in php_filter_validate_regexp()
684 uint32_t capture_count; in php_filter_validate_email() local
706 re = pcre_get_compiled_regex(sregexp, &capture_count); in php_filter_validate_email()
711 match_data = php_pcre_create_match_data(capture_count, re); in php_filter_validate_email()
/PHP-8.3/ext/pcre/
H A Dphp_pcre.h29 PHPAPI pcre2_code* pcre_get_compiled_regex(zend_string *regex, uint32_t *capture_count);
H A Dphp_pcre.c58 uint32_t capture_count; member
905 if (capture_count) { in pcre_get_compiled_regex()
906 *capture_count = pce ? pce->capture_count : 0; in pcre_get_compiled_regex()
923 if (!capture_count) { in php_pcre_create_match_data()
925 rc = pcre2_pattern_info(re, PCRE2_INFO_CAPTURECOUNT, &capture_count); in php_pcre_create_match_data()
928 if (rc >= 0 && capture_count + 1 <= PHP_PCRE_PREALLOC_MDATA_SIZE) { in php_pcre_create_match_data()
1218 num_subpats = pce->capture_count + 1; in php_pcre_match_impl()
1603 num_subpats = pce->capture_count + 1; in php_pcre_replace_impl()
1840 num_subpats = pce->capture_count + 1; in php_pcre_replace_func_impl()
2525 num_subpats = pce->capture_count + 1; in php_pcre_split_impl()
[all …]
/PHP-8.3/ext/standard/
H A Dbrowscap.c555 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.3/ext/zip/
H A Dphp_zip.c759 uint32_t i, capture_count; in php_zip_pcre() local
762 re = pcre_get_compiled_regex(regexp, &capture_count); in php_zip_pcre()
789 match_data = php_pcre_create_match_data(capture_count, re); in php_zip_pcre()

Completed in 35 milliseconds