Searched refs:PCRE_DOTALL (Results 1 – 16 of 16) sorted by relevance
/external/pcre/dist/ |
D | pcrecpp.h | 400 return PCRE_IS_SET(PCRE_DOTALL); in dotall() 403 PCRE_SET_OR_CLEAR(x, PCRE_DOTALL); in set_dotall()
|
D | pcreposix.c | 278 if ((cflags & REG_DOTALL) != 0) options |= PCRE_DOTALL; in regcomp()
|
D | pcregexp.pas | 108 PCRE_DOTALL = $0004; 145 PCRE_DOLLAR_ENDONLY + PCRE_DOTALL + PCRE_EXTENDED +
|
D | pcrecpp_unittest.cc | 741 options.set_all_options(PCRE_CASELESS | PCRE_DOTALL); in Test_all_options()
|
D | pcretest.c | 3762 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()
|
D | pcre_jit_test.c | 656 { PCRE_FIRSTLINE | PCRE_NEWLINE_LF | PCRE_DOTALL, 0 | F_NOMATCH, "ab.", "ab" },
|
D | pcre.h.generic | 129 #define PCRE_DOTALL 0x00000004 /* C1 */
|
D | pcre_internal.h | 1115 PCRE_DOTALL|PCRE_DOLLAR_ENDONLY|PCRE_EXTRA|PCRE_UNGREEDY|PCRE_UTF8| \
|
D | pcre.h.in | 129 #define PCRE_DOTALL 0x00000004 /* C1 */ macro
|
D | HACKING | 137 The /i, /m, or /s options (PCRE_CASELESS, PCRE_MULTILINE, PCRE_DOTALL, and some
|
D | ChangeLog | 1250 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
|
D | pcre_compile.c | 4716 *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/ |
D | pcre.h | 129 #define PCRE_DOTALL 0x00000004 /* C1 */ macro
|
/external/libselinux/src/ |
D | label_file.c | 259 spec->regex = pcre_compile(anchored_regex, PCRE_DOTALL, &tmperrbuf, &erroff, NULL); in compile_regex()
|
/external/pcre/dist/doc/ |
D | pcre.txt | 2150 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 …]
|
D | pcretest.txt | 324 /s set PCRE_DOTALL 346 PCRE_DOTALL, or PCRE_EXTENDED options, respectively, when
|