Lines Matching refs:regex_ht

2156 	zend_string *regex_str, HashTable *regex_ht,  in php_replace_in_subject()  argument
2167 ZEND_ASSERT(regex_ht != NULL); in php_replace_in_subject()
2168 result = php_pcre_replace_array(regex_ht, replace_str, replace_ht, subject, in php_replace_in_subject()
2176 static zend_string *php_replace_in_subject_func(zend_string *regex_str, HashTable *regex_ht, in php_replace_in_subject_func() argument
2190 ZEND_ASSERT(regex_ht != NULL); in php_replace_in_subject_func()
2195 ZEND_HASH_FOREACH_VAL(regex_ht, regex_entry) { in php_replace_in_subject_func()
2219 zend_string *regex_str, HashTable *regex_ht, in preg_replace_func_impl() argument
2228 regex_str, regex_ht, fci, fcc, subject_str, limit_val, &replace_count, flags); in preg_replace_func_impl()
2252 regex_str, regex_ht, fci, fcc, subject_entry_str, limit_val, &replace_count, flags); in preg_replace_func_impl()
2272 HashTable *regex_ht, zend_string *regex_str, in _preg_replace_common() argument
2284 if (replace_ht && !regex_ht) { in _preg_replace_common()
2291 result = php_replace_in_subject(regex_str, regex_ht, replace_str, replace_ht, in _preg_replace_common()
2320 result = php_replace_in_subject(regex_str, regex_ht, replace_str, replace_ht, in _preg_replace_common()
2349 HashTable *regex_ht, *replace_ht, *subject_ht; in preg_replace_common() local
2355 Z_PARAM_ARRAY_HT_OR_STR(regex_ht, regex_str) in preg_replace_common()
2365 regex_ht, regex_str, in preg_replace_common()
2382 HashTable *regex_ht, *replace_ht, *subject_ht; variable
2385 Z_FLF_PARAM_ARRAY_HT_OR_STR(1, regex_ht, regex_str, regex_tmp);
2391 regex_ht, regex_str,
2407 HashTable *regex_ht; in PHP_FUNCTION() local
2417 Z_PARAM_ARRAY_HT_OR_STR(regex_ht, regex_str) in PHP_FUNCTION()
2426 replace_count = preg_replace_func_impl(return_value, regex_str, regex_ht, in PHP_FUNCTION()