Lines Matching refs:regex_str

2095 			zend_string *regex_str = zval_get_tmp_string(regex_entry, &tmp_regex_str);  in php_pcre_replace_array()  local
2116 result = php_pcre_replace(regex_str, subject_str, ZSTR_VAL(subject_str), in php_pcre_replace_array()
2134 zend_string *regex_str = zval_get_tmp_string(regex_entry, &tmp_regex_str); in php_pcre_replace_array() local
2138 result = php_pcre_replace(regex_str, subject_str, ZSTR_VAL(subject_str), in php_pcre_replace_array()
2156 zend_string *regex_str, HashTable *regex_ht, in php_replace_in_subject() argument
2162 if (regex_str) { in php_replace_in_subject()
2164 result = php_pcre_replace(regex_str, subject, ZSTR_VAL(subject), ZSTR_LEN(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
2182 if (regex_str) { in php_replace_in_subject_func()
2184 regex_str, subject, fci, fcc, limit, replace_count, flags); 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
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()
2348 zend_string *regex_str, *replace_str, *subject_str; 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()
2381 zend_string *regex_str, *replace_str, *subject_str; variable
2385 Z_FLF_PARAM_ARRAY_HT_OR_STR(1, regex_ht, regex_str, regex_tmp);
2391 regex_ht, regex_str,
2406 zend_string *regex_str; 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()