Home
last modified time | relevance | path

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

/external/pcre/dist/
Dpcrecpp.h400 return PCRE_IS_SET(PCRE_DOTALL); in dotall()
403 PCRE_SET_OR_CLEAR(x, PCRE_DOTALL); in set_dotall()
Dpcreposix.c278 if ((cflags & REG_DOTALL) != 0) options |= PCRE_DOTALL; in regcomp()
Dpcregexp.pas108 PCRE_DOTALL = $0004;
145 PCRE_DOLLAR_ENDONLY + PCRE_DOTALL + PCRE_EXTENDED +
Dpcrecpp_unittest.cc741 options.set_all_options(PCRE_CASELESS | PCRE_DOTALL); in Test_all_options()
Dpcretest.c3762 case 's': options |= PCRE_DOTALL; break; in main()
3925 if ((options & PCRE_DOTALL) != 0) cflags |= REG_DOTALL; in main()
4236 ((get_options & PCRE_DOTALL) != 0)? " dotall" : "", in main()
Dpcre_jit_test.c656 { PCRE_FIRSTLINE | PCRE_NEWLINE_LF | PCRE_DOTALL, 0 | F_NOMATCH, "ab.", "ab" },
Dpcre.h.generic129 #define PCRE_DOTALL 0x00000004 /* C1 */
Dpcre_internal.h1115 PCRE_DOTALL|PCRE_DOLLAR_ENDONLY|PCRE_EXTRA|PCRE_UNGREEDY|PCRE_UTF8| \
Dpcre.h.in129 #define PCRE_DOTALL 0x00000004 /* C1 */ macro
DHACKING137 The /i, /m, or /s options (PCRE_CASELESS, PCRE_MULTILINE, PCRE_DOTALL, and some
DChangeLog1250 time (the PCRE_DOTALL option was changed this way some time ago: version
1448 the PCRE_UTF8 and PCRE_DOTALL options being set.
1635 newline. (It is the same as "." when PCRE_DOTALL is not set.)
3374 15. In UTF-8 mode, with the PCRE_DOTALL option set, a quantified dot in the
3378 16. If PCRE_DOTALL or PCRE_MULTILINE were set, pcre_dfa_exec() behaved as if
3949 passes PCRE_DOTALL to the pcre_compile() function, making the "." character
4490 PCRE_DOTALL. However, PCRE does not permit \C to appear in lookbehind
5150 not pass a newline unless PCRE_DOTALL is set. It now assumes anchoring only if
5460 (a) . no longer matches \n by default; an option PCRE_DOTALL is provided
Dpcre_compile.c4716 *code++ = ((options & PCRE_DOTALL) != 0)? OP_ALLANY: OP_ANY; in compile_branch()
7382 case CHAR_s: *optset |= PCRE_DOTALL; break; in compile_branch()
/external/pcre/
Dpcre.h129 #define PCRE_DOTALL 0x00000004 /* C1 */ macro
/external/libselinux/src/
Dlabel_file.c259 spec->regex = pcre_compile(anchored_regex, PCRE_DOTALL, &tmperrbuf, &erroff, NULL); in compile_regex()
/external/pcre/dist/doc/
Dpcre.txt2150 PCRE_DOTALL
2260 Note, however, that unless PCRE_DOTALL is set, the "any character"
2757 (b) every branch of the pattern starts with ".*" and PCRE_DOTALL is not
2790 (b) every branch of the pattern starts with ".*" and PCRE_DOTALL is not
2970 .* if PCRE_DOTALL is set and there are no back
3273 expected. For example, if the pattern is .+A (and the PCRE_DOTALL
4845 acter when PCRE_DOTALL is not set, and the behaviour of \N. However, it
5164 acter. This is the same as the "." metacharacter when PCRE_DOTALL is
5671 PCRE_DOTALL option is set, a dot matches any one character, without
5680 affected by the PCRE_DOTALL option. In other words, it matches any
[all …]
Dpcretest.txt324 /s set PCRE_DOTALL
346 PCRE_DOTALL, or PCRE_EXTENDED options, respectively, when