Searched refs:PCRE_NEWLINE_CR (Results 1 – 17 of 17) sorted by relevance
/external/pcre/dist/ |
D | pcredemo.c | 268 option_bits &= PCRE_NEWLINE_CR|PCRE_NEWLINE_LF|PCRE_NEWLINE_CRLF| in main() 280 option_bits = (d == 13)? PCRE_NEWLINE_CR : in main()
|
D | pcrecpp.cc | 357 if (pcre_options & (PCRE_NEWLINE_CRLF|PCRE_NEWLINE_CR|PCRE_NEWLINE_LF| in NewlineMode() 360 (PCRE_NEWLINE_CRLF|PCRE_NEWLINE_CR|PCRE_NEWLINE_LF| in NewlineMode() 368 newline_mode = PCRE_NEWLINE_CR; in NewlineMode()
|
D | pcregexp.pas | 129 PCRE_NEWLINE_CR = $00100000; 135 PCRE_NEWLINE_BITS = PCRE_NEWLINE_CR or PCRE_NEWLINE_LF or PCRE_NEWLINE_ANY;
|
D | pcre_jit_test.c | 215 { PCRE_NEWLINE_CR, 0, ".\\Z", "aaa" }, 216 { PCRE_NEWLINE_CR | PCRE_UTF8, 0, "a\\Z", "aaa\r" }, 217 { PCRE_NEWLINE_CR, 0, ".\\Z", "aaa\n" }, 393 { PCRE_MULTILINE | PCRE_NEWLINE_CR, 0, "\\W{0,2}[^#]{3}", "\r\n#....." },
|
D | pcre_dfa_exec.c | 3302 case PCRE_NEWLINE_CR: newline = CHAR_CR; break; in pcre_dfa_exec() 3304 case PCRE_NEWLINE_CR+ in pcre_dfa_exec()
|
D | pcrecpp_unittest.cc | 349 RE re("b*", RE_Options(PCRE_NEWLINE_CR).set_utf8(support_utf8)); in TestReplace()
|
D | pcre_compile.c | 8939 { skipatstart += 5; newnl = PCRE_NEWLINE_CR; } in pcre_compile2() 8943 { skipatstart += 7; newnl = PCRE_NEWLINE_CR + PCRE_NEWLINE_LF; } in pcre_compile2() 9021 case PCRE_NEWLINE_CR: newline = CHAR_CR; break; in pcre_compile2() 9023 case PCRE_NEWLINE_CR+ in pcre_compile2()
|
D | pcretest.c | 2883 if (strncmpic(p, (pcre_uint8 *)"cr>", 3) == 0) return PCRE_NEWLINE_CR; in check_mc_option() 4255 case PCRE_NEWLINE_CR: in main() 5514 obits = (d == 13)? PCRE_NEWLINE_CR : in main()
|
D | pcre_internal.h | 1110 #define PCRE_NEWLINE_BITS (PCRE_NEWLINE_CR|PCRE_NEWLINE_LF|PCRE_NEWLINE_ANY| \
|
D | pcre.h.in | 159 #define PCRE_NEWLINE_CR 0x00100000 /* C3 E D */ macro
|
D | pcre.h.generic | 159 #define PCRE_NEWLINE_CR 0x00100000 /* C3 E D */
|
D | pcregrep.c | 3011 pcre_options |= PCRE_NEWLINE_CR; in main()
|
D | pcre_exec.c | 6603 case PCRE_NEWLINE_CR: newline = CHAR_CR; break; in pcre_exec() 6605 case PCRE_NEWLINE_CR+ in pcre_exec()
|
D | pcre_jit_compile.c | 9788 case PCRE_NEWLINE_CR: common->newline = CHAR_CR; break; in PRIV() 9790 case PCRE_NEWLINE_CR+ in PRIV()
|
/external/pcre/ |
D | pcre.h | 159 #define PCRE_NEWLINE_CR 0x00100000 /* C3 E D */ macro
|
/external/pcre/dist/doc/ |
D | pcretest.txt | 335 /<cr> set PCRE_NEWLINE_CR 381 /<cr> PCRE_NEWLINE_CR 694 \<cr> pass the PCRE_NEWLINE_CR option to pcre[16|32]_exec()
|
D | pcre.txt | 2281 PCRE_NEWLINE_CR 2313 ble. For example, PCRE_NEWLINE_CR with PCRE_NEWLINE_LF is equivalent to 3252 PCRE_NEWLINE_CR
|