Lines Matching refs:flags

1064 		uint32_t num_subpats, int count, const PCRE2_SPTR mark, zend_long flags) {  in populate_subpat_array()  argument
1065 zend_bool offset_capture = (flags & PREG_OFFSET_CAPTURE) != 0; in populate_subpat_array()
1066 zend_bool unmatched_as_null = (flags & PREG_UNMATCHED_AS_NULL) != 0; in populate_subpat_array()
1137 zend_long flags = 0; /* Match control flags */ in php_do_pcre_match() local
1145 Z_PARAM_LONG(flags) in php_do_pcre_match()
1156 global, ZEND_NUM_ARGS() >= 4, flags, start_offset); in php_do_pcre_match()
1179 zval *subpats, int global, int use_flags, zend_long flags, zend_off_t start_offset) in php_pcre_match_impl() argument
1216 offset_capture = flags & PREG_OFFSET_CAPTURE; in php_pcre_match_impl()
1217 unmatched_as_null = flags & PREG_UNMATCHED_AS_NULL; in php_pcre_match_impl()
1223 if (flags & 0xff) { in php_pcre_match_impl()
1224 subpats_order = flags & 0xff; in php_pcre_match_impl()
1384 num_subpats, count, mark, flags); in php_pcre_match_impl()
1392 subpats, subject, offsets, subpat_names, num_subpats, count, mark, flags); in php_pcre_match_impl()
1552 …end_string **subpat_names, uint32_t num_subpats, int count, const PCRE2_SPTR mark, zend_long flags) in preg_do_repl_func() argument
1559 populate_subpat_array(&arg, subject, offsets, subpat_names, num_subpats, count, mark, flags); in preg_do_repl_func()
1855 …_fcall_info *fci, zend_fcall_info_cache *fcc, size_t limit, size_t *replace_count, zend_long flags) in php_pcre_replace_func_impl() argument
1961 pcre2_get_mark(match_data), flags); in php_pcre_replace_func_impl()
2071 size_t limit, size_t *replace_count, zend_long flags) in php_pcre_replace_func() argument
2083 limit, replace_count, flags); in php_pcre_replace_func()
2190 zend_string *subject, size_t limit, size_t *replace_count, zend_long flags) in php_replace_in_subject_func() argument
2196 regex_str, subject, fci, fcc, limit, replace_count, flags); in php_replace_in_subject_func()
2215 regex_entry_str, subject, fci, fcc, limit, replace_count, flags); in php_replace_in_subject_func()
2233 zend_string *subject_str, HashTable *subject_ht, zend_long limit_val, zend_long flags) in preg_replace_func_impl() argument
2240 regex_str, regex_ht, fci, fcc, subject_str, limit_val, &replace_count, flags); in preg_replace_func_impl()
2263 regex_str, regex_ht, fci, fcc, subject_entry_str, limit_val, &replace_count, flags); in preg_replace_func_impl()
2383 zend_long limit = -1, flags = 0; in PHP_FUNCTION() local
2396 Z_PARAM_LONG(flags) in PHP_FUNCTION()
2401 subject_str, subject_ht, limit, flags); in PHP_FUNCTION()
2414 zend_long limit = -1, flags = 0; in PHP_FUNCTION() local
2426 Z_PARAM_LONG(flags) in PHP_FUNCTION()
2454 subject_str, subject_ht, limit, flags); in PHP_FUNCTION()
2509 zend_long flags = 0; /* Match control flags */ in PHP_FUNCTION() local
2518 Z_PARAM_LONG(flags) in PHP_FUNCTION()
2527 php_pcre_split_impl(pce, subject, return_value, limit_val, flags); in PHP_FUNCTION()
2534 zend_long limit_val, zend_long flags) in php_pcre_split_impl() argument
2549 no_empty = flags & PREG_SPLIT_NO_EMPTY; in php_pcre_split_impl()
2550 delim_capture = flags & PREG_SPLIT_DELIM_CAPTURE; in php_pcre_split_impl()
2551 offset_capture = flags & PREG_SPLIT_OFFSET_CAPTURE; in php_pcre_split_impl()
2867 zend_long flags = 0; /* Match control flags */ in PHP_FUNCTION() local
2875 Z_PARAM_LONG(flags) in PHP_FUNCTION()
2884 php_pcre_grep_impl(pce, input, return_value, flags); in PHP_FUNCTION()
2889 …p_pcre_grep_impl(pcre_cache_entry *pce, zval *input, zval *return_value, zend_long flags) /* {{{ */ in php_pcre_grep_impl() argument
2900 invert = flags & PREG_GREP_INVERT ? 1 : 0; in php_pcre_grep_impl()