Searched refs:overall_options (Results 1 – 10 of 10) sorted by relevance
/external/pcre/dist2/src/ |
D | pcre2_substitute.c | 132 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()
|
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()
|
D | pcre2_study.c | 462 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()
|
D | pcre2_dfa_match.c | 3295 ((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()
|
D | pcre2test.c | 4331 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 …]
|
D | pcre2_match.c | 6104 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()
|
D | pcre2_printint.c | 312 BOOL utf = (re->overall_options & PCRE2_UTF) != 0; in pcre2_printint()
|
D | pcre2_jit_compile.c | 4819 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 …]
|
D | pcre2_intmodedep.h | 627 uint32_t overall_options; /* Options after processing the pattern */ member
|
D | pcre2_compile.c | 9929 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()
|