Lines Matching refs:replace_str

1579 							  zend_string *replace_str,  in php_pcre_replace()  argument
1595 result = php_pcre_replace_impl(pce, subject_str, subject, subject_len, replace_str, in php_pcre_replace()
1604 …ng *subject_str, const char *subject, size_t subject_len, zend_string *replace_str, size_t limit, … in php_pcre_replace_impl() argument
1693 walk = ZSTR_VAL(replace_str); in php_pcre_replace_impl()
1694 replace_end = walk + ZSTR_LEN(replace_str); in php_pcre_replace_impl()
1733 memcpy(&ZSTR_VAL(result)[result_len], ZSTR_VAL(replace_str), ZSTR_LEN(replace_str)+1); in php_pcre_replace_impl()
1734 result_len += ZSTR_LEN(replace_str); in php_pcre_replace_impl()
1739 walk = ZSTR_VAL(replace_str); in php_pcre_replace_impl()
2080 zend_string *replace_str, HashTable *replace_ht, in php_pcre_replace_array() argument
2128 ZEND_ASSERT(replace_str != NULL); in php_pcre_replace_array()
2139 ZSTR_LEN(subject_str), replace_str, limit, replace_count); in php_pcre_replace_array()
2157 zend_string *replace_str, HashTable *replace_ht, in php_replace_in_subject() argument
2163 ZEND_ASSERT(replace_str != NULL); in php_replace_in_subject()
2165 replace_str, limit, replace_count); in php_replace_in_subject()
2168 result = php_pcre_replace_array(regex_ht, replace_str, replace_ht, subject, in php_replace_in_subject()
2273 HashTable *replace_ht, zend_string *replace_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
2356 Z_PARAM_ARRAY_HT_OR_STR(replace_ht, replace_str) in preg_replace_common()
2366 replace_ht, replace_str, in preg_replace_common()
2381 zend_string *regex_str, *replace_str, *subject_str; variable
2386 Z_FLF_PARAM_ARRAY_HT_OR_STR(2, replace_ht, replace_str, replace_tmp);
2392 replace_ht, replace_str,