replace           790 ext/mbstring/php_mbregex.c 	char *replace;
replace           831 ext/mbstring/php_mbregex.c 						&replace, &replace_len,
replace           914 ext/mbstring/php_mbregex.c 				p = replace;
replace          1096 ext/pcre/php_pcre.c 	char			*replace=NULL,		/* Replacement string */
replace          1124 ext/pcre/php_pcre.c 		replace = Z_STRVAL_P(replace_val);
replace          1126 ext/pcre/php_pcre.c 		replace_end = replace + replace_len;
replace          1191 ext/pcre/php_pcre.c 			if (EXPECTED(replace)) {
replace          1193 ext/pcre/php_pcre.c 				walk = replace;
replace          1230 ext/pcre/php_pcre.c 				walk = replace;
replace          1350 ext/pcre/php_pcre.c static zend_string *php_replace_in_subject(zval *regex, zval *replace, zval *subject, int limit, int is_callable_replace, int *replace_count)
replace          1369 ext/pcre/php_pcre.c 		replace_value = replace;
replace          1380 ext/pcre/php_pcre.c 			if (Z_TYPE_P(replace) == IS_ARRAY && !is_callable_replace) {
replace          1382 ext/pcre/php_pcre.c 				while (replace_idx < Z_ARRVAL_P(replace)->nNumUsed) {
replace          1383 ext/pcre/php_pcre.c 					if (Z_TYPE(Z_ARRVAL_P(replace)->arData[replace_idx].val) != IS_UNDEF) {
replace          1384 ext/pcre/php_pcre.c 						ZVAL_COPY(&replace_str, &Z_ARRVAL_P(replace)->arData[replace_idx].val);
replace          1430 ext/pcre/php_pcre.c 								  replace,
replace          1442 ext/pcre/php_pcre.c static int preg_replace_impl(zval *return_value, zval *regex, zval *replace, zval *subject, zend_long limit_val, int is_callable_replace, int is_filter)
replace          1450 ext/pcre/php_pcre.c 	if (Z_TYPE_P(replace) != IS_ARRAY && (Z_TYPE_P(replace) != IS_OBJECT || !is_callable_replace)) {
replace          1451 ext/pcre/php_pcre.c 		convert_to_string_ex(replace);
replace          1466 ext/pcre/php_pcre.c 			if ((result = php_replace_in_subject(regex, replace, subject_entry, limit_val, is_callable_replace, &replace_count)) != NULL) {
replace          1485 ext/pcre/php_pcre.c 		if ((result = php_replace_in_subject(regex, replace, subject, limit_val, is_callable_replace, &replace_count)) != NULL) {
replace          1502 ext/pcre/php_pcre.c 	zval *regex, *replace, *subject, *zcount = NULL;
replace          1508 ext/pcre/php_pcre.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "zzz|lz/", &regex, &replace, &subject, &limit, &zcount) == FAILURE) {
replace          1514 ext/pcre/php_pcre.c 		Z_PARAM_ZVAL(replace)
replace          1522 ext/pcre/php_pcre.c 	if (Z_TYPE_P(replace) == IS_ARRAY && Z_TYPE_P(regex) != IS_ARRAY) {
replace          1527 ext/pcre/php_pcre.c 	replace_count = preg_replace_impl(return_value, regex, replace, subject, limit, 0, 0);
replace          1539 ext/pcre/php_pcre.c 	zval *regex, *replace, *subject, *zcount = NULL;
replace          1546 ext/pcre/php_pcre.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "zzz|lz/", &regex, &replace, &subject, &limit, &zcount) == FAILURE) {
replace          1552 ext/pcre/php_pcre.c 		Z_PARAM_ZVAL(replace)
replace          1560 ext/pcre/php_pcre.c 	if (!zend_is_callable(replace, 0, &callback_name)) {
replace          1568 ext/pcre/php_pcre.c 	replace_count = preg_replace_impl(return_value, regex, replace, subject, limit, 1, 0);
replace          1580 ext/pcre/php_pcre.c 	zval regex, zv, *replace, *subject, *pattern, *zcount = NULL;
replace          1602 ext/pcre/php_pcre.c 	ZEND_HASH_FOREACH_STR_KEY_VAL(Z_ARRVAL_P(pattern), str_idx, replace) {
replace          1611 ext/pcre/php_pcre.c 		if (!zend_is_callable(replace, 0, &callback_name)) {
replace          1622 ext/pcre/php_pcre.c 			replace_count += preg_replace_impl(&zv, &regex, replace, subject, limit, 1, 0);
replace          1624 ext/pcre/php_pcre.c 			replace_count += preg_replace_impl(&zv, &regex, replace, return_value, limit, 1, 0);
replace          1653 ext/pcre/php_pcre.c 	zval *regex, *replace, *subject, *zcount = NULL;
replace          1659 ext/pcre/php_pcre.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "zzz|lz/", &regex, &replace, &subject, &limit, &zcount) == FAILURE) {
replace          1665 ext/pcre/php_pcre.c 		Z_PARAM_ZVAL(replace)
replace          1673 ext/pcre/php_pcre.c 	if (Z_TYPE_P(replace) == IS_ARRAY && Z_TYPE_P(regex) != IS_ARRAY) {
replace          1678 ext/pcre/php_pcre.c 	replace_count = preg_replace_impl(return_value, regex, replace, subject, limit, 0, 1);
replace          2139 ext/pcre/php_pcre.c     ZEND_ARG_INFO(0, replace)
replace          98183 ext/sqlite3/libsqlite/sqlite3.c     FUNCTION(replace,            3, 0, 0, replaceFunc      ),
replace          2395 ext/standard/array.c static void php_splice(HashTable *in_hash, int offset, int length, HashTable *replace, HashTable *removed) /* {{{ */
replace          2423 ext/standard/array.c 	zend_hash_init(&out_hash, (length > 0 ? num_in - length : 0) + (replace ? zend_hash_num_elements(replace) : 0), NULL, ZVAL_PTR_DTOR, 0);
replace          2490 ext/standard/array.c 	if (replace) {
replace          2491 ext/standard/array.c 		ZEND_HASH_FOREACH_VAL_IND(replace, entry) {
replace          3155 ext/standard/array.c static inline void php_array_merge_or_replace_wrapper(INTERNAL_FUNCTION_PARAMETERS, int recursive, int replace) /* {{{ */
replace          3189 ext/standard/array.c 	if (replace) {
replace          1412 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, replace)
replace          2282 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, replace)
replace          2347 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, replace)
replace          2354 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, replace)
replace          3479 ext/standard/string.c 			zend_string *str_key, *replace;
replace          3489 ext/standard/string.c 				replace = zval_get_string(entry);
replace          3495 ext/standard/string.c 								ZSTR_VAL(replace),
replace          3496 ext/standard/string.c 								ZSTR_LEN(replace),
replace          3503 ext/standard/string.c 								ZSTR_VAL(replace), ZSTR_LEN(replace), &dummy));
replace          3505 ext/standard/string.c 				zend_string_release(replace);
replace          3955 ext/standard/string.c static zend_long php_str_replace_in_subject(zval *search, zval *replace, zval *subject, zval *result, int case_sensitivity)
replace          3981 ext/standard/string.c 		if (Z_TYPE_P(replace) == IS_ARRAY) {
replace          3985 ext/standard/string.c 			replace_value = Z_STRVAL_P(replace);
replace          3986 ext/standard/string.c 			replace_len = Z_STRLEN_P(replace);
replace          3994 ext/standard/string.c 				if (Z_TYPE_P(replace) == IS_ARRAY) {
replace          4002 ext/standard/string.c 			if (Z_TYPE_P(replace) == IS_ARRAY) {
replace          4004 ext/standard/string.c 				while (replace_idx < Z_ARRVAL_P(replace)->nNumUsed) {
replace          4005 ext/standard/string.c 					replace_entry = &Z_ARRVAL_P(replace)->arData[replace_idx].val;
replace          4011 ext/standard/string.c 				if (replace_idx < Z_ARRVAL_P(replace)->nNumUsed) {
replace          4086 ext/standard/string.c 							Z_STRVAL_P(replace),
replace          4087 ext/standard/string.c 							Z_STRLEN_P(replace),
replace          4094 ext/standard/string.c 						Z_STRVAL_P(replace), Z_STRLEN_P(replace), &replace_count));
replace          4099 ext/standard/string.c 						Z_STRVAL_P(replace), Z_STRLEN_P(replace), &replace_count));
replace          4115 ext/standard/string.c 	zval *subject, *search, *replace, *subject_entry, *zcount = NULL;
replace          4123 ext/standard/string.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "zzz|z/", &search, &replace, &subject, &zcount) == FAILURE) {
replace          4129 ext/standard/string.c 		Z_PARAM_ZVAL(replace)
replace          4139 ext/standard/string.c 		if (Z_TYPE_P(replace) != IS_STRING) {
replace          4140 ext/standard/string.c 			convert_to_string_ex(replace);
replace          4142 ext/standard/string.c 	} else if (Z_TYPE_P(replace) != IS_ARRAY) {
replace          4143 ext/standard/string.c 		convert_to_string_ex(replace);
replace          4154 ext/standard/string.c 				count += php_str_replace_in_subject(search, replace, subject_entry, &result, case_sensitivity);
replace          4166 ext/standard/string.c 		count = php_str_replace_in_subject(search, replace, subject, return_value, case_sensitivity);
replace           622 main/SAPI.c    SAPI_API int sapi_add_header_ex(char *header_line, size_t header_line_len, zend_bool duplicate, zend_bool replace)
replace           630 main/SAPI.c    	r = sapi_header_op(replace ? SAPI_HEADER_REPLACE : SAPI_HEADER_ADD,
replace           187 main/SAPI.h    SAPI_API int sapi_add_header_ex(char *header_line, size_t header_line_len, zend_bool duplicate, zend_bool replace);
replace           146 win32/sendmail.c 	zval replace;
replace           153 win32/sendmail.c 	ZVAL_STRINGL(&replace, PHP_WIN32_MAIL_UNIFY_REPLACE, strlen(PHP_WIN32_MAIL_UNIFY_REPLACE));
replace           158 win32/sendmail.c 				  &replace,
replace           163 win32/sendmail.c 	zval_ptr_dtor(&replace);
replace           170 win32/sendmail.c 	ZVAL_STRING(&replace, PHP_WIN32_MAIL_RMVDBL_PATTERN);
replace           175 win32/sendmail.c 				   &replace,
replace           179 win32/sendmail.c 	zval_ptr_dtor(&replace);