Searched refs:overall_options (Results 1 – 10 of 10) sorted by relevance
/external/pcre/dist2/src/ |
D | pcre2_substitute.c | 132 code->overall_options, FALSE, NULL); in find_text_end() 233 BOOL utf = (code->overall_options & PCRE2_UTF) != 0; in pcre2_substitute() 344 else if ((code->overall_options & PCRE2_UTF) != 0) in pcre2_substitute() 763 code->overall_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 | 461 if ((re->overall_options & PCRE2_MATCH_UNSET_BACKREF) == 0) in find_minlength() 535 if ((re->overall_options & PCRE2_MATCH_UNSET_BACKREF) == 0) in find_minlength() 1583 BOOL utf = (re->overall_options & PCRE2_UTF) != 0; in PRIV()
|
D | pcre2_dfa_match.c | 3282 ((re->overall_options | options) & PCRE2_ENDANCHORED) != 0) in pcre2_dfa_match() 3325 utf = (re->overall_options & PCRE2_UTF) != 0; in pcre2_dfa_match() 3330 (re->overall_options & PCRE2_ANCHORED) != 0; in pcre2_dfa_match() 3336 firstline = (re->overall_options & PCRE2_FIRSTLINE) != 0; in pcre2_dfa_match() 3367 if ((re->overall_options & PCRE2_USE_OFFSET_LIMIT) == 0) in pcre2_dfa_match() 3395 mb->poptions = re->overall_options; in pcre2_dfa_match() 3542 if ((re->overall_options & PCRE2_NO_START_OPTIMIZE) == 0 && in pcre2_dfa_match()
|
D | pcre2_jit_compile.c | 3701 sljit_u32 overall_options = common->re->overall_options; in mainloop_entry() local 3706 if (!(hascrorlf || (overall_options & PCRE2_FIRSTLINE) != 0) in mainloop_entry() 3712 if ((overall_options & PCRE2_FIRSTLINE) != 0) in mainloop_entry() 3746 else if ((overall_options & PCRE2_USE_OFFSET_LIMIT) != 0) in mainloop_entry() 10300 if (*cc == OP_ACCEPT && common->currententry == NULL && (common->re->overall_options & PCRE2_ENDANC… in compile_fail_accept_matchingpath() 12087 common->endonly = (re->overall_options & PCRE2_DOLLAR_ENDONLY) != 0; in jit_compile() 12091 common->unset_backref = (re->overall_options & PCRE2_MATCH_UNSET_BACKREF) != 0; in jit_compile() 12092 common->alt_circumflex = (re->overall_options & PCRE2_ALT_CIRCUMFLEX) != 0; in jit_compile() 12095 common->utf = (re->overall_options & PCRE2_UTF) != 0; in jit_compile() 12096 common->use_ucp = (re->overall_options & PCRE2_UCP) != 0; in jit_compile() [all …]
|
D | pcre2_compile.c | 9617 re->overall_options = cb.external_options; in pcre2_compile() 9672 regexrc = compile_regex(re->overall_options, &code, &pptr, &errorcode, 0, in pcre2_compile() 9774 if (errorcode == 0 && (re->overall_options & PCRE2_NO_AUTO_POSSESS) == 0) in pcre2_compile() 9790 if ((re->overall_options & PCRE2_ANCHORED) == 0 && in pcre2_compile() 9792 re->overall_options |= PCRE2_ANCHORED; in pcre2_compile() 9801 if ((re->overall_options & PCRE2_NO_START_OPTIMIZE) == 0) in pcre2_compile() 9845 else if ((re->overall_options & PCRE2_ANCHORED) == 0 && in pcre2_compile() 9853 ((re->overall_options & PCRE2_ANCHORED) == 0 || in pcre2_compile()
|
D | pcre2_match.c | 6088 utf = (re->overall_options & PCRE2_UTF) != 0; in pcre2_match() 6096 ((re->overall_options | options) & PCRE2_ENDANCHORED) != 0) in pcre2_match() 6158 (re->overall_options & PCRE2_USE_OFFSET_LIMIT) == 0) in pcre2_match() 6186 anchored = ((re->overall_options | options) & PCRE2_ANCHORED) != 0; in pcre2_match() 6187 firstline = (re->overall_options & PCRE2_FIRSTLINE) != 0; in pcre2_match() 6212 mb->poptions = re->overall_options; /* Pattern options */ in pcre2_match() 6380 if ((re->overall_options & PCRE2_NO_START_OPTIMIZE) == 0) in pcre2_match()
|
D | pcre2test.c | 4273 BOOL utf = (FLD(compiled_code, overall_options) & PCRE2_UTF) != 0; in callout_callback() 4320 uint32_t compile_options, overall_options, extra_options; in show_pattern_info() local 4459 pattern_info(PCRE2_INFO_ALLOPTIONS, &overall_options, FALSE); in show_pattern_info() 4468 overall_options &= ~PCRE2_NEVER_UTF; in show_pattern_info() 4474 overall_options &= ~PCRE2_NEVER_UCP; in show_pattern_info() 4477 if ((compile_options|overall_options) != 0) in show_pattern_info() 4479 if (compile_options == overall_options) in show_pattern_info() 4484 show_compile_options(overall_options, "Overall options:", "\n"); in show_pattern_info() 5910 BOOL utf = (FLD(compiled_code, overall_options) & PCRE2_UTF) != 0; in callout_function() 6376 ((pcre2_real_code_8 *)preg.re_pcre2_code)->overall_options : in process_data() [all …]
|
D | pcre2_printint.c | 312 BOOL utf = (re->overall_options & PCRE2_UTF) != 0; in pcre2_printint()
|
D | pcre2_intmodedep.h | 625 uint32_t overall_options; /* Options after processing the pattern */ member
|