Home
last modified time | relevance | path

Searched refs:coptions (Results 1 – 2 of 2) sorted by relevance

/PHP-8.0/ext/pcre/
H A Dphp_pcre.h30 …_regex_ex(zend_string *regex, uint32_t *capture_count, uint32_t *preg_options, uint32_t *coptions);
H A Dphp_pcre.c608 uint32_t coptions = PCRE2_NO_START_OPTIMIZE; in pcre_get_compiled_regex_cache_ex() local
610 uint32_t coptions = 0; in pcre_get_compiled_regex_cache_ex() local
735 case 'i': coptions |= PCRE2_CASELESS; break; in pcre_get_compiled_regex_cache_ex()
737 case 's': coptions |= PCRE2_DOTALL; break; in pcre_get_compiled_regex_cache_ex()
738 case 'x': coptions |= PCRE2_EXTENDED; break; in pcre_get_compiled_regex_cache_ex()
741 case 'A': coptions |= PCRE2_ANCHORED; break; in pcre_get_compiled_regex_cache_ex()
745 case 'U': coptions |= PCRE2_UNGREEDY; break; in pcre_get_compiled_regex_cache_ex()
746 case 'u': coptions |= PCRE2_UTF; in pcre_get_compiled_regex_cache_ex()
751 coptions |= PCRE2_UCP; in pcre_get_compiled_regex_cache_ex()
754 case 'J': coptions |= PCRE2_DUPNAMES; break; in pcre_get_compiled_regex_cache_ex()
[all …]

Completed in 12 milliseconds