Searched refs:overall_options (Results 1 – 10 of 10) sorted by relevance
/external/pcre/dist2/src/ |
D | pcre2_substitute.c | 131 code->overall_options, FALSE, NULL); in find_text_end() 231 BOOL utf = (code->overall_options & PCRE2_UTF) != 0; in pcre2_substitute() 334 else if ((code->overall_options & PCRE2_UTF) != 0) in pcre2_substitute() 732 code->overall_options, FALSE, NULL); in pcre2_substitute()
|
D | pcre2_pattern_info.c | 121 *((uint32_t *)where) = re->overall_options; in pcre2_pattern_info() 258 BOOL utf = (re->overall_options & PCRE2_UTF) != 0; in pcre2_callout_enumerate()
|
D | pcre2_study.c | 450 if ((re->overall_options & PCRE2_MATCH_UNSET_BACKREF) == 0) in find_minlength() 504 if ((re->overall_options & PCRE2_MATCH_UNSET_BACKREF) == 0) in find_minlength() 1530 BOOL utf = (re->overall_options & PCRE2_UTF) != 0; in PRIV() 1541 if ((re->overall_options & PCRE2_ANCHORED) == 0 && in PRIV()
|
D | pcre2_dfa_match.c | 3197 utf = (re->overall_options & PCRE2_UTF) != 0; in pcre2_dfa_match() 3202 (re->overall_options & PCRE2_ANCHORED) != 0; in pcre2_dfa_match() 3208 firstline = (re->overall_options & PCRE2_FIRSTLINE) != 0; in pcre2_dfa_match() 3224 if ((re->overall_options & PCRE2_USE_OFFSET_LIMIT) == 0) in pcre2_dfa_match() 3240 mb->poptions = re->overall_options; in pcre2_dfa_match() 3389 if ((re->overall_options & PCRE2_NO_START_OPTIMIZE) == 0 && in pcre2_dfa_match()
|
D | pcre2test.c | 3805 BOOL utf = (FLD(compiled_code, overall_options) & PCRE2_UTF) != 0; in callout_callback() 3852 uint32_t compile_options, overall_options; in show_pattern_info() local 3968 pattern_info(PCRE2_INFO_ALLOPTIONS, &overall_options, FALSE); in show_pattern_info() 3976 overall_options &= ~PCRE2_NEVER_UTF; in show_pattern_info() 3982 overall_options &= ~PCRE2_NEVER_UCP; in show_pattern_info() 3985 if ((compile_options|overall_options) != 0) in show_pattern_info() 3987 if (compile_options == overall_options) in show_pattern_info() 3992 show_compile_options(overall_options, "Overall options:", "\n"); in show_pattern_info() 5144 BOOL utf = (FLD(compiled_code, overall_options) & PCRE2_UTF) != 0; in callout_function() 5569 ((pcre2_real_code_8 *)preg.re_pcre2_code)->overall_options : in process_data() [all …]
|
D | pcre2_jit_compile.c | 3302 …uct sljit_label *mainloop_entry(compiler_common *common, BOOL hascrorlf, sljit_u32 overall_options) in mainloop_entry() argument 3317 if (!(hascrorlf || (overall_options & PCRE2_FIRSTLINE) != 0) in mainloop_entry() 3323 if ((overall_options & PCRE2_FIRSTLINE) != 0) in mainloop_entry() 3357 else if ((overall_options & PCRE2_USE_OFFSET_LIMIT) != 0) in mainloop_entry() 10897 common->endonly = (re->overall_options & PCRE2_DOLLAR_ENDONLY) != 0; in jit_compile() 10901 common->unset_backref = (re->overall_options & PCRE2_MATCH_UNSET_BACKREF) != 0; in jit_compile() 10902 common->alt_circumflex = (re->overall_options & PCRE2_ALT_CIRCUMFLEX) != 0; in jit_compile() 10905 common->utf = (re->overall_options & PCRE2_UTF) != 0; in jit_compile() 10906 common->use_ucp = (re->overall_options & PCRE2_UCP) != 0; in jit_compile() 10956 if (mode == PCRE2_JIT_COMPLETE && (re->flags & PCRE2_LASTSET) != 0 && (re->overall_options & PCRE2_… in jit_compile() [all …]
|
D | pcre2_compile.c | 8690 re->overall_options = cb.external_options; in pcre2_compile() 8770 (void)compile_regex(re->overall_options, &code, &ptr, &errorcode, FALSE, FALSE, in pcre2_compile() 8876 else if ((re->overall_options & PCRE2_NO_AUTO_POSSESS) == 0) in pcre2_compile() 8954 if ((re->overall_options & PCRE2_ANCHORED) == 0 && in pcre2_compile() 8956 re->overall_options |= PCRE2_ANCHORED; in pcre2_compile() 8964 if ((re->overall_options & (PCRE2_ANCHORED|PCRE2_NO_START_OPTIMIZE)) == 0) in pcre2_compile() 9012 ((re->overall_options & (PCRE2_ANCHORED|PCRE2_NO_START_OPTIMIZE)) == 0 || in pcre2_compile() 9058 if ((re->overall_options & PCRE2_NO_START_OPTIMIZE) == 0 && in pcre2_compile()
|
D | pcre2_printint.c | 312 BOOL utf = (re->overall_options & PCRE2_UTF) != 0; in pcre2_printint()
|
D | pcre2_intmodedep.h | 612 uint32_t overall_options; /* Options after processing the pattern */ member
|
D | pcre2_match.c | 6536 utf = (re->overall_options & PCRE2_UTF) != 0; in pcre2_match() 6599 (re->overall_options & PCRE2_USE_OFFSET_LIMIT) == 0) in pcre2_match() 6619 anchored = ((re->overall_options | options) & PCRE2_ANCHORED) != 0; in pcre2_match() 6620 firstline = (re->overall_options & PCRE2_FIRSTLINE) != 0; in pcre2_match() 6640 mb->poptions = re->overall_options; /* Pattern options */ in pcre2_match() 6800 if ((re->overall_options & PCRE2_NO_START_OPTIMIZE) == 0) in pcre2_match()
|