Home
last modified time | relevance | path

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

/PHP-7.3/ext/pcre/
H A Dphp_pcre.h35 PHPAPI pcre2_code* pcre_get_compiled_regex(zend_string *regex, uint32_t *capture_count, uint32_t *o…
36 PHPAPI pcre2_code* pcre_get_compiled_regex_ex(zend_string *regex, uint32_t *capture_count, uint32_t…
H A Dphp_pcre.c51 uint32_t capture_count; member
889 if (capture_count) { in pcre_get_compiled_regex()
890 *capture_count = pce ? pce->capture_count : 0; in pcre_get_compiled_regex()
909 if (capture_count) { in pcre_get_compiled_regex_ex()
910 *capture_count = pce ? pce->capture_count : 0; in pcre_get_compiled_regex_ex()
927 if (!capture_count) { in php_pcre_create_match_data()
1081 num_subpats = pce->capture_count + 1; in php_pcre_match_impl()
1589 num_subpats = pce->capture_count + 1; in php_pcre_replace_impl()
1828 num_subpats = pce->capture_count + 1; in php_pcre_replace_func_impl()
2516 num_subpats = pce->capture_count + 1; in php_pcre_split_impl()
[all …]
/PHP-7.3/ext/filter/
H A Dlogical_filters.c447 uint32_t preg_options, capture_count; in php_filter_validate_regexp() local
458 re = pcre_get_compiled_regex(regexp, &capture_count, &preg_options); in php_filter_validate_regexp()
462 match_data = php_pcre_create_match_data(capture_count, re); in php_filter_validate_regexp()
652 uint32_t preg_options = 0, capture_count; in php_filter_validate_email() local
674 re = pcre_get_compiled_regex(sregexp, &capture_count, &preg_options); in php_filter_validate_email()
679 match_data = php_pcre_create_match_data(capture_count, re); in php_filter_validate_email()
/PHP-7.3/ext/standard/
H A Dbrowscap.c580 uint32_t re_options, capture_count; in browser_reg_compare() local
623 re = pcre_get_compiled_regex(regex, &capture_count, &re_options); in browser_reg_compare()
630 match_data = php_pcre_create_match_data(capture_count, re); in browser_reg_compare()
/PHP-7.3/ext/zip/
H A Dphp_zip.c658 uint32_t preg_options = 0, i, capture_count; in php_zip_pcre() local
661 re = pcre_get_compiled_regex(regexp, &capture_count, &preg_options); in php_zip_pcre()
701 match_data = php_pcre_create_match_data(capture_count, re); in php_zip_pcre()

Completed in 43 milliseconds