Home
last modified time | relevance | path

Searched refs:PCRE2_NO_UTF_CHECK (Results 1 – 13 of 13) sorted by relevance

/third_party/pcre2/pcre2/src/
Dpcre2_fuzzsupport.c136 ((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()
Dpcre2_substitute.c343 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()
Dpcre2.h.in101 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
Dpcre2.h.generic101 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
Dpcre2_match.c71 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()
Dpcre2_dfa_match.c87 PCRE2_NOTEMPTY_ATSTART|PCRE2_NO_UTF_CHECK|PCRE2_PARTIAL_HARD| \
3539 if (utf && (options & PCRE2_NO_UTF_CHECK) == 0) in pcre2_dfa_match()
Dpcre2test.c709 { "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()
Dpcre2_jit_test.c442 { MU, A, PCRE2_NO_UTF_CHECK, 1, "^.a", "\n\x80\nxa" },
Dpcre2_compile.c770 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/
Dpcre2.rs88 PCRE2_NO_UTF_CHECK, in find_at()
147 const PCRE2_NO_UTF_CHECK: u32 = 0x40000000; constant
/third_party/pcre2/pcre2/doc/
Dpcre2.txt115 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 …]
Dpcre2test.txt591 no_utf_check set PCRE2_NO_UTF_CHECK
1059 no_utf_check set PCRE2_NO_UTF_CHECK
/third_party/pcre2/pcre2/
DChangeLog2192 68. In pcre2_substitute() in UTF mode, PCRE2_NO_UTF_CHECK can be set for the