Searched refs:overall_options (Results 1 - 10 of 10) sorted by relevance
/third_party/pcre2/pcre2/src/ |
H A D | pcre2_substitute.c | 133 code->overall_options, code->extra_options, FALSE, NULL); in find_text_end() 238 BOOL utf = (code->overall_options & PCRE2_UTF) != 0; in pcre2_substitute() 239 BOOL ucp = (code->overall_options & PCRE2_UCP) != 0; in pcre2_substitute() 423 else if ((code->overall_options & PCRE2_UTF) != 0) in pcre2_substitute() 854 code->overall_options, code->extra_options, FALSE, NULL); in pcre2_substitute()
|
H A D | pcre2_dfa_match.c | 3368 ((re->overall_options | options) & PCRE2_ENDANCHORED) != 0) in pcre2_dfa_match() 3373 if ((re->overall_options & PCRE2_MATCH_INVALID_UTF) != 0) in pcre2_dfa_match() 3416 utf = (re->overall_options & PCRE2_UTF) != 0; in pcre2_dfa_match() 3421 (re->overall_options & PCRE2_ANCHORED) != 0; in pcre2_dfa_match() 3427 firstline = (re->overall_options & PCRE2_FIRSTLINE) != 0; in pcre2_dfa_match() 3458 if ((re->overall_options & PCRE2_USE_OFFSET_LIMIT) == 0) in pcre2_dfa_match() 3488 mb->poptions = re->overall_options; in pcre2_dfa_match() 3591 if (first_cu > 127 && !utf && (re->overall_options & PCRE2_UCP) != 0) in pcre2_dfa_match() 3594 if (first_cu > 127 && (utf || (re->overall_options & PCRE2_UCP) != 0)) in pcre2_dfa_match() 3615 if (req_cu > 127 && !utf && (re->overall_options in pcre2_dfa_match() [all...] |
H A D | pcre2_pattern_info.c | 124 *((uint32_t *)where) = re->overall_options; in pcre2_pattern_info() 281 utf = (re->overall_options & PCRE2_UTF) != 0; in pcre2_callout_enumerate()
|
H A D | pcre2_study.c | 476 if (!dupcapused && (re->overall_options & PCRE2_MATCH_UNSET_BACKREF) == 0) in find_minlength() 555 if ((re->overall_options & PCRE2_MATCH_UNSET_BACKREF) == 0) in find_minlength() 1676 BOOL utf = (re->overall_options & PCRE2_UTF) != 0; in study() 1677 BOOL ucp = (re->overall_options & PCRE2_UCP) != 0; in study()
|
H A D | pcre2test.c | 4404 BOOL utf = (FLD(compiled_code, overall_options) & PCRE2_UTF) != 0; in callout_callback() 4451 uint32_t compile_options, overall_options, extra_options; in show_pattern_info() local 4452 BOOL utf = (FLD(compiled_code, overall_options) & PCRE2_UTF) != 0; in show_pattern_info() 4638 pattern_info(PCRE2_INFO_ALLOPTIONS, &overall_options, FALSE); in show_pattern_info() 4647 overall_options &= ~PCRE2_NEVER_UTF; in show_pattern_info() 4653 overall_options &= ~PCRE2_NEVER_UCP; in show_pattern_info() 4656 if ((compile_options|overall_options) != 0) in show_pattern_info() 4658 if (compile_options == overall_options) in show_pattern_info() 4663 show_compile_options(overall_options, "Overall options:", "\n"); in show_pattern_info() 4772 if ((FLD(compiled_code, overall_options) in show_pattern_info() [all...] |
H A D | pcre2_match.c | 6432 utf = (re->overall_options & PCRE2_UTF) != 0; in pcre2_match() 6433 allow_invalid = (re->overall_options & PCRE2_MATCH_INVALID_UTF) != 0; in pcre2_match() 6434 ucp = (re->overall_options & PCRE2_UCP) != 0; in pcre2_match() 6446 ((re->overall_options | options) & PCRE2_ENDANCHORED) != 0) in pcre2_match() 6453 (re->overall_options & PCRE2_USE_OFFSET_LIMIT) == 0) in pcre2_match() 6721 anchored = ((re->overall_options | options) & PCRE2_ANCHORED) != 0; in pcre2_match() 6722 firstline = (re->overall_options & PCRE2_FIRSTLINE) != 0; in pcre2_match() 6748 mb->poptions = re->overall_options; /* Pattern options */ in pcre2_match() 6941 if ((re->overall_options & PCRE2_NO_START_OPTIMIZE) == 0) in pcre2_match()
|
H A D | pcre2_jit_compile.c | 5227 sljit_u32 overall_options = common->re->overall_options; in mainloop_entry() local 5232 if (!(hascrorlf || (overall_options & PCRE2_FIRSTLINE) != 0) in mainloop_entry() 5238 if ((overall_options & PCRE2_FIRSTLINE) != 0) in mainloop_entry() 5272 else if ((overall_options & PCRE2_USE_OFFSET_LIMIT) != 0) in mainloop_entry() 11959 if (*cc == OP_ACCEPT && common->currententry == NULL && (common->re->overall_options & PCRE2_ENDANCHORED) != 0) in compile_fail_accept_matchingpath() 13773 common->endonly = (re->overall_options & PCRE2_DOLLAR_ENDONLY) != 0; in jit_compile() 13777 common->unset_backref = (re->overall_options & PCRE2_MATCH_UNSET_BACKREF) != 0; in jit_compile() 13778 common->alt_circumflex = (re->overall_options & PCRE2_ALT_CIRCUMFLEX) != 0; in jit_compile() 13781 common->utf = (re->overall_options in jit_compile() [all...] |
H A D | pcre2_printint.c | 343 BOOL utf = (re->overall_options & PCRE2_UTF) != 0; in pcre2_printint()
|
H A D | pcre2_intmodedep.h | 626 uint32_t overall_options; /* Options after processing the pattern */ member
|
H A D | pcre2_compile.c | 10273 re->overall_options = cb.external_options; in pcre2_compile() 10328 regexrc = compile_regex(re->overall_options, &code, &pptr, &errorcode, 0, in pcre2_compile() 10431 if (errorcode == 0 && (re->overall_options & PCRE2_NO_AUTO_POSSESS) == 0) in pcre2_compile() 10447 if ((re->overall_options & PCRE2_ANCHORED) == 0 && in pcre2_compile() 10449 re->overall_options |= PCRE2_ANCHORED; in pcre2_compile() 10458 if ((re->overall_options & PCRE2_NO_START_OPTIMIZE) == 0) in pcre2_compile() 10510 else if ((re->overall_options & PCRE2_ANCHORED) == 0 && in pcre2_compile() 10522 if ((re->overall_options & PCRE2_UTF) == 0 || /* Not UTF */ in pcre2_compile() 10527 if ((re->overall_options & PCRE2_UTF) == 0 || /* Not UTF */ in pcre2_compile() 10539 if ((re->overall_options in pcre2_compile() [all...] |
Completed in 50 milliseconds