Home
last modified time | relevance | path

Searched refs:PCRE_DOTALL (Results 1 – 8 of 8) sorted by relevance

/PHP-7.1/ext/pcre/pcrelib/
H A Dpcreposix.c276 if ((cflags & REG_DOTALL) != 0) options |= PCRE_DOTALL; in regcomp()
H A Dpcre.h129 #define PCRE_DOTALL 0x00000004 /* C1 */ macro
H A Dpcre_internal.h1116 PCRE_DOTALL|PCRE_DOLLAR_ENDONLY|PCRE_EXTRA|PCRE_UNGREEDY|PCRE_UTF8| \
H A DHACKING137 The /i, /m, or /s options (PCRE_CASELESS, PCRE_MULTILINE, PCRE_DOTALL, and some
H A DChangeLog1593 time (the PCRE_DOTALL option was changed this way some time ago: version
1791 the PCRE_UTF8 and PCRE_DOTALL options being set.
1978 newline. (It is the same as "." when PCRE_DOTALL is not set.)
3717 15. In UTF-8 mode, with the PCRE_DOTALL option set, a quantified dot in the
3721 16. If PCRE_DOTALL or PCRE_MULTILINE were set, pcre_dfa_exec() behaved as if
4292 passes PCRE_DOTALL to the pcre_compile() function, making the "." character
4833 PCRE_DOTALL. However, PCRE does not permit \C to appear in lookbehind
5493 not pass a newline unless PCRE_DOTALL is set. It now assumes anchoring only if
5803 (a) . no longer matches \n by default; an option PCRE_DOTALL is provided
H A Dpcre_compile.c4784 *code++ = ((options & PCRE_DOTALL) != 0)? OP_ALLANY: OP_ANY; in compile_branch()
7584 case CHAR_s: *optset |= PCRE_DOTALL; break; in compile_branch()
/PHP-7.1/ext/pcre/pcrelib/doc/
H A Dpcre.txt2161 PCRE_DOTALL
2271 Note, however, that unless PCRE_DOTALL is set, the "any character"
2768 (b) every branch of the pattern starts with ".*" and PCRE_DOTALL is not
2801 (b) every branch of the pattern starts with ".*" and PCRE_DOTALL is not
2981 .* if PCRE_DOTALL is set and there are no back
3284 expected. For example, if the pattern is .+A (and the PCRE_DOTALL
4856 acter when PCRE_DOTALL is not set, and the behaviour of \N. However, it
5188 acter. This is the same as the "." metacharacter when PCRE_DOTALL is
5988 s for PCRE_DOTALL
9659 . matches newline no PCRE_DOTALL
[all …]
/PHP-7.1/ext/pcre/
H A Dphp_pcre.c459 case 's': coptions |= PCRE_DOTALL; break; in pcre_get_compiled_regex_cache()

Completed in 95 milliseconds