Searched refs:PCRE2_NO_UTF_CHECK (Results 1 – 13 of 13) sorted by relevance
/third_party/pcre2/pcre2/src/ |
D | pcre2_fuzzsupport.c | 136 ((compile_options & PCRE2_NO_UTF_CHECK) != 0)? ",no_utf_check" : "", in LLVMFuzzerTestOneInput() 199 ((match_options & PCRE2_NO_UTF_CHECK) != 0)? ",no_utf_check" : "", in LLVMFuzzerTestOneInput() 235 ((match_options & PCRE2_NO_UTF_CHECK) != 0)? ",no_utf_check" : "", in LLVMFuzzerTestOneInput()
|
D | pcre2_substitute.c | 343 if (utf && (options & PCRE2_NO_UTF_CHECK) == 0) in pcre2_substitute() 390 if (utf) options |= PCRE2_NO_UTF_CHECK; /* Only need to check once */ in pcre2_substitute()
|
D | pcre2.h.in | 101 or pcre2_dfa_match(). PCRE2_NO_UTF_CHECK affects only the function to which it 106 #define PCRE2_NO_UTF_CHECK 0x40000000u macro 167 PCRE2_NO_UTF_CHECK can also be passed to these functions (though
|
D | pcre2.h.generic | 101 or pcre2_dfa_match(). PCRE2_NO_UTF_CHECK affects only the function to which it 106 #define PCRE2_NO_UTF_CHECK 0x40000000u 167 PCRE2_NO_UTF_CHECK can also be passed to these functions (though
|
D | pcre2_match.c | 71 PCRE2_NOTEMPTY_ATSTART|PCRE2_NO_UTF_CHECK|PCRE2_PARTIAL_HARD| \ 75 (PCRE2_NO_UTF_CHECK|PCRE2_NOTBOL|PCRE2_NOTEOL|PCRE2_NOTEMPTY|\ 6479 if (utf && (options & PCRE2_NO_UTF_CHECK) == 0 && !allow_invalid) in pcre2_match() 6592 ((options & PCRE2_NO_UTF_CHECK) == 0 || allow_invalid)) in pcre2_match()
|
D | pcre2_dfa_match.c | 87 PCRE2_NOTEMPTY_ATSTART|PCRE2_NO_UTF_CHECK|PCRE2_PARTIAL_HARD| \ 3539 if (utf && (options & PCRE2_NO_UTF_CHECK) == 0) in pcre2_dfa_match()
|
D | pcre2test.c | 709 { "no_utf_check", MOD_PD, MOD_OPT, PCRE2_NO_UTF_CHECK, PD(options) }, 4212 ((options & PCRE2_NO_UTF_CHECK) != 0)? " no_utf_check" : "", in show_compile_options() 4271 ((options & PCRE2_NO_UTF_CHECK) != 0)? " no_utf_check" : "", in show_match_options() 5690 if ((pat_patctl.options & PCRE2_NO_UTF_CHECK) != 0) in process_pattern()
|
D | pcre2_jit_test.c | 442 { MU, A, PCRE2_NO_UTF_CHECK, 1, "^.a", "\n\x80\nxa" },
|
D | pcre2_compile.c | 770 PCRE2_NO_START_OPTIMIZE|PCRE2_NO_UTF_CHECK|PCRE2_USE_OFFSET_LIMIT|PCRE2_UTF) 10039 if ((options & PCRE2_NO_UTF_CHECK) == 0 && in pcre2_compile()
|
/third_party/rust/crates/regex/bench/src/ffi/ |
D | pcre2.rs | 88 PCRE2_NO_UTF_CHECK, in find_at() 147 const PCRE2_NO_UTF_CHECK: u32 = 0x40000000; constant
|
/third_party/pcre2/pcre2/doc/ |
D | pcre2.txt | 115 times, you can use the PCRE2_NO_UTF_CHECK option for the second and 1364 PCRE2_NO_UTF_CHECK options can be set at the time of matching as well 1637 PCRE2_MATCH_INVALID_UTF, PCRE2_NO_START_OPTIMIZE, PCRE2_NO_UTF_CHECK, 1803 PCRE2_NO_UTF_CHECK 1813 PCRE2_NO_UTF_CHECK option. When it is set, the effect of passing an in- 1821 Note also that setting PCRE2_NO_UTF_CHECK at compile time does not dis- 1902 PCRE2_NO_UTF_CHECK option does not disable the error that occurs, be- 1909 PCRE2_NO_UTF_CHECK set. 2638 PCRE2_NO_UTF_CHECK, PCRE2_PARTIAL_HARD, and PCRE2_PARTIAL_SOFT. Their 2724 PCRE2_NO_UTF_CHECK [all …]
|
D | pcre2test.txt | 591 no_utf_check set PCRE2_NO_UTF_CHECK 1059 no_utf_check set PCRE2_NO_UTF_CHECK
|
/third_party/pcre2/pcre2/ |
D | ChangeLog | 2192 68. In pcre2_substitute() in UTF mode, PCRE2_NO_UTF_CHECK can be set for the
|