Lines Matching refs:replace_str

1555 							  zend_string *replace_str,  in php_pcre_replace()  argument
1571 result = php_pcre_replace_impl(pce, subject_str, subject, subject_len, replace_str, in php_pcre_replace()
1580 …ng *subject_str, const char *subject, size_t subject_len, zend_string *replace_str, size_t limit, … in php_pcre_replace_impl() argument
1669 walk = ZSTR_VAL(replace_str); in php_pcre_replace_impl()
1670 replace_end = walk + ZSTR_LEN(replace_str); in php_pcre_replace_impl()
1709 memcpy(&ZSTR_VAL(result)[result_len], ZSTR_VAL(replace_str), ZSTR_LEN(replace_str)+1); in php_pcre_replace_impl()
1710 result_len += ZSTR_LEN(replace_str); in php_pcre_replace_impl()
1715 walk = ZSTR_VAL(replace_str); in php_pcre_replace_impl()
2057 zend_string *replace_str, HashTable *replace_ht, in php_pcre_replace_array() argument
2105 ZEND_ASSERT(replace_str != NULL); in php_pcre_replace_array()
2116 ZSTR_LEN(subject_str), replace_str, limit, replace_count); in php_pcre_replace_array()
2134 zend_string *replace_str, HashTable *replace_ht, in php_replace_in_subject() argument
2140 ZEND_ASSERT(replace_str != NULL); in php_replace_in_subject()
2142 replace_str, limit, replace_count); in php_replace_in_subject()
2145 result = php_pcre_replace_array(regex_ht, replace_str, replace_ht, subject, in php_replace_in_subject()
2252 zend_string *replace_str; in preg_replace_common() local
2264 Z_PARAM_ARRAY_HT_OR_STR(replace_ht, replace_str) in preg_replace_common()
2279 result = php_replace_in_subject(regex_str, regex_ht, replace_str, replace_ht, in preg_replace_common()
2307 result = php_replace_in_subject(regex_str, regex_ht, replace_str, replace_ht, in preg_replace_common()