Home
last modified time | relevance | path

Searched refs:overall_options (Results 1 – 10 of 10) sorted by relevance

/external/pcre/dist2/src/
Dpcre2_substitute.c132 code->overall_options, code->extra_options, FALSE, NULL); in find_text_end()
233 BOOL utf = (code->overall_options & PCRE2_UTF) != 0; in pcre2_substitute()
355 else if ((code->overall_options & PCRE2_UTF) != 0) in pcre2_substitute()
777 code->overall_options, code->extra_options, FALSE, NULL); in pcre2_substitute()
Dpcre2_pattern_info.c124 *((uint32_t *)where) = re->overall_options; in pcre2_pattern_info()
281 utf = (re->overall_options & PCRE2_UTF) != 0; in pcre2_callout_enumerate()
Dpcre2_study.c462 if ((re->overall_options & PCRE2_MATCH_UNSET_BACKREF) == 0) in find_minlength()
536 if ((re->overall_options & PCRE2_MATCH_UNSET_BACKREF) == 0) in find_minlength()
1585 BOOL utf = (re->overall_options & PCRE2_UTF) != 0; in PRIV()
Dpcre2_dfa_match.c3295 ((re->overall_options | options) & PCRE2_ENDANCHORED) != 0) in pcre2_dfa_match()
3338 utf = (re->overall_options & PCRE2_UTF) != 0; in pcre2_dfa_match()
3343 (re->overall_options & PCRE2_ANCHORED) != 0; in pcre2_dfa_match()
3349 firstline = (re->overall_options & PCRE2_FIRSTLINE) != 0; in pcre2_dfa_match()
3380 if ((re->overall_options & PCRE2_USE_OFFSET_LIMIT) == 0) in pcre2_dfa_match()
3408 mb->poptions = re->overall_options; in pcre2_dfa_match()
3565 if ((re->overall_options & PCRE2_NO_START_OPTIMIZE) == 0 && in pcre2_dfa_match()
Dpcre2test.c4331 BOOL utf = (FLD(compiled_code, overall_options) & PCRE2_UTF) != 0; in callout_callback()
4378 uint32_t compile_options, overall_options, extra_options; in show_pattern_info() local
4379 BOOL utf = (FLD(compiled_code, overall_options) & PCRE2_UTF) != 0; in show_pattern_info()
4565 pattern_info(PCRE2_INFO_ALLOPTIONS, &overall_options, FALSE); in show_pattern_info()
4574 overall_options &= ~PCRE2_NEVER_UTF; in show_pattern_info()
4580 overall_options &= ~PCRE2_NEVER_UCP; in show_pattern_info()
4583 if ((compile_options|overall_options) != 0) in show_pattern_info()
4585 if (compile_options == overall_options) in show_pattern_info()
4590 show_compile_options(overall_options, "Overall options:", "\n"); in show_pattern_info()
6020 BOOL utf = (FLD(compiled_code, overall_options) & PCRE2_UTF) != 0; in substitute_callout_function()
[all …]
Dpcre2_match.c6104 utf = (re->overall_options & PCRE2_UTF) != 0; in pcre2_match()
6112 ((re->overall_options | options) & PCRE2_ENDANCHORED) != 0) in pcre2_match()
6174 (re->overall_options & PCRE2_USE_OFFSET_LIMIT) == 0) in pcre2_match()
6225 anchored = ((re->overall_options | options) & PCRE2_ANCHORED) != 0; in pcre2_match()
6226 firstline = (re->overall_options & PCRE2_FIRSTLINE) != 0; in pcre2_match()
6251 mb->poptions = re->overall_options; /* Pattern options */ in pcre2_match()
6419 if ((re->overall_options & PCRE2_NO_START_OPTIMIZE) == 0) in pcre2_match()
Dpcre2_printint.c312 BOOL utf = (re->overall_options & PCRE2_UTF) != 0; in pcre2_printint()
Dpcre2_jit_compile.c4819 sljit_u32 overall_options = common->re->overall_options; in mainloop_entry() local
4824 if (!(hascrorlf || (overall_options & PCRE2_FIRSTLINE) != 0) in mainloop_entry()
4830 if ((overall_options & PCRE2_FIRSTLINE) != 0) in mainloop_entry()
4864 else if ((overall_options & PCRE2_USE_OFFSET_LIMIT) != 0) in mainloop_entry()
11705 if (*cc == OP_ACCEPT && common->currententry == NULL && (common->re->overall_options & PCRE2_ENDANC… in compile_fail_accept_matchingpath()
13506 common->endonly = (re->overall_options & PCRE2_DOLLAR_ENDONLY) != 0; in jit_compile()
13510 common->unset_backref = (re->overall_options & PCRE2_MATCH_UNSET_BACKREF) != 0; in jit_compile()
13511 common->alt_circumflex = (re->overall_options & PCRE2_ALT_CIRCUMFLEX) != 0; in jit_compile()
13514 common->utf = (re->overall_options & PCRE2_UTF) != 0; in jit_compile()
13515 common->use_ucp = (re->overall_options & PCRE2_UCP) != 0; in jit_compile()
[all …]
Dpcre2_intmodedep.h627 uint32_t overall_options; /* Options after processing the pattern */ member
Dpcre2_compile.c9929 re->overall_options = cb.external_options; in pcre2_compile()
9984 regexrc = compile_regex(re->overall_options, &code, &pptr, &errorcode, 0, in pcre2_compile()
10086 if (errorcode == 0 && (re->overall_options & PCRE2_NO_AUTO_POSSESS) == 0) in pcre2_compile()
10102 if ((re->overall_options & PCRE2_ANCHORED) == 0 && in pcre2_compile()
10104 re->overall_options |= PCRE2_ANCHORED; in pcre2_compile()
10113 if ((re->overall_options & PCRE2_NO_START_OPTIMIZE) == 0) in pcre2_compile()
10157 else if ((re->overall_options & PCRE2_ANCHORED) == 0 && in pcre2_compile()
10165 ((re->overall_options & PCRE2_ANCHORED) == 0 || in pcre2_compile()