Lines Matching refs:regex
572 PHPAPI pcre_cache_entry* pcre_get_compiled_regex_cache_ex(zend_string *regex, bool locale_aware) in pcre_get_compiled_regex_cache_ex() argument
601 ZSTR_VAL(regex), ZSTR_LEN(regex)); in pcre_get_compiled_regex_cache_ex()
603 key = regex; in pcre_get_compiled_regex_cache_ex()
610 if (key != regex) { in pcre_get_compiled_regex_cache_ex()
616 p = ZSTR_VAL(regex); in pcre_get_compiled_regex_cache_ex()
617 const char* end_p = ZSTR_VAL(regex) + ZSTR_LEN(regex); in pcre_get_compiled_regex_cache_ex()
623 if (key != regex) { in pcre_get_compiled_regex_cache_ex()
635 if (key != regex) { in pcre_get_compiled_regex_cache_ex()
678 if (key != regex) { in pcre_get_compiled_regex_cache_ex()
741 if (key != regex) { in pcre_get_compiled_regex_cache_ex()
748 if (key != regex) { in pcre_get_compiled_regex_cache_ex()
774 if (key != regex) { in pcre_get_compiled_regex_cache_ex()
826 if (key != regex) { in pcre_get_compiled_regex_cache_ex()
837 if (key != regex) { in pcre_get_compiled_regex_cache_ex()
849 if (key != regex) { in pcre_get_compiled_regex_cache_ex()
878 if (key != regex) { in pcre_get_compiled_regex_cache_ex()
887 PHPAPI pcre_cache_entry* pcre_get_compiled_regex_cache(zend_string *regex) in pcre_get_compiled_regex_cache() argument
889 return pcre_get_compiled_regex_cache_ex(regex, true); in pcre_get_compiled_regex_cache()
894 PHPAPI pcre2_code *pcre_get_compiled_regex(zend_string *regex, uint32_t *capture_count) in pcre_get_compiled_regex() argument
896 pcre_cache_entry * pce = pcre_get_compiled_regex_cache(regex); in pcre_get_compiled_regex()
1106 zend_string *regex; /* Regular expression */ in php_do_pcre_match() local
1114 Z_PARAM_STR(regex) in php_do_pcre_match()
1123 if ((pce = pcre_get_compiled_regex_cache(regex)) == NULL) { in php_do_pcre_match()
1481 zend_string *regex, *subject; variable
1483 Z_FLF_PARAM_STR(1, regex, regex_tmp);
1488 if ((pce = pcre_get_compiled_regex_cache(regex)) == NULL) {
1583 PHPAPI zend_string *php_pcre_replace(zend_string *regex, in php_pcre_replace() argument
1598 if ((pce = pcre_get_compiled_regex_cache(regex)) == NULL) { in php_pcre_replace()
2047 static zend_always_inline zend_string *php_pcre_replace_func(zend_string *regex, in php_pcre_replace_func() argument
2056 if ((pce = pcre_get_compiled_regex_cache(regex)) == NULL) { in php_pcre_replace_func()
2070 static zend_string *php_pcre_replace_array(HashTable *regex, in php_pcre_replace_array() argument
2083 ZEND_HASH_FOREACH_VAL(regex, regex_entry) { in php_pcre_replace_array()
2122 ZEND_HASH_FOREACH_VAL(regex, regex_entry) { in php_pcre_replace_array()
2527 zend_string *regex; /* Regular expression */ in PHP_FUNCTION() local
2535 Z_PARAM_STR(regex) in PHP_FUNCTION()
2543 if ((pce = pcre_get_compiled_regex_cache(regex)) == NULL) { in PHP_FUNCTION()
2887 zend_string *regex; /* Regular expression */ in PHP_FUNCTION() local
2894 Z_PARAM_STR(regex) in PHP_FUNCTION()
2901 if ((pce = pcre_get_compiled_regex_cache(regex)) == NULL) { in PHP_FUNCTION()