Home
last modified time | relevance | path

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

/third_party/glib/glib/pcre/
Dpcre_fullinfo.c195 *((int *)where) = re->max_lookbehind; in pcre_fullinfo()
Dpcre_compile.c6884 if ((-c == ESC_b || -c == ESC_B) && cd->max_lookbehind == 0) in compile_branch()
6885 cd->max_lookbehind = 1; in compile_branch()
7195 if (fixed_length > cd->max_lookbehind) in compile_regex()
7196 cd->max_lookbehind = fixed_length; in compile_regex()
7868 cd->max_lookbehind = 0; in pcre_compile2()
7938 cd->max_lookbehind = 0; in pcre_compile2()
7960 re->max_lookbehind = cd->max_lookbehind; in pcre_compile2()
8048 if (fixed_length > cd->max_lookbehind) cd->max_lookbehind = fixed_length; in pcre_compile2()
Dpcre_internal.h1982 pcre_uint16 max_lookbehind; /* Longest lookbehind (characters) */ member
2036 int max_lookbehind; /* Maximum lookbehind (characters) */ member
/third_party/pcre2/pcre2/src/
Dpcre2_intmodedep.h636 uint16_t max_lookbehind; /* Longest lookbehind (characters) */ member
750 int max_lookbehind; /* Maximum lookbehind (characters) */ member
Dpcre2_pattern_info.c217 *((uint32_t *)where) = re->max_lookbehind; in pcre2_pattern_info()
Dpcre2_match.c6307 for (i = re->max_lookbehind; i > 0 && start_match > subject; i--) in pcre2_match()
6324 if (start_offset >= re->max_lookbehind) in pcre2_match()
6325 start_match -= re->max_lookbehind; in pcre2_match()
6438 for (i = re->max_lookbehind; i > 0 && mb->check_subject > subject; i--) in pcre2_match()
6456 if (start_offset >= re->max_lookbehind) in pcre2_match()
6457 mb->check_subject -= re->max_lookbehind; in pcre2_match()
6542 mb->allowemptypartial = (re->max_lookbehind > 0) || in pcre2_match()
Dpcre2_compile.c7823 cb->max_lookbehind == 0) in compile_branch()
7824 cb->max_lookbehind = 1; in compile_branch()
9474 if (branchlength > cb->max_lookbehind) cb->max_lookbehind = branchlength; in set_lookbehind_lengths()
9799 cb.max_lookbehind = 0; in pcre2_compile()
10189 re->max_lookbehind = 0; in pcre2_compile()
10239 re->max_lookbehind = cb.max_lookbehind; in pcre2_compile()
Dpcre2_dfa_match.c3426 mb->allowemptypartial = (re->max_lookbehind > 0) || in pcre2_dfa_match()
3490 for (i = re->max_lookbehind; i > 0 && check_subject > subject; i--) in pcre2_dfa_match()
3502 check_subject -= re->max_lookbehind; in pcre2_dfa_match()
Dpcre2_jit_compile.c13585 common->allow_empty_partial = (re->max_lookbehind > 0) || (re->flags & PCRE2_MATCH_EMPTY); in jit_compile()
/third_party/glib/glib/
Dgregex.c1844 gint max_lookbehind; in g_regex_get_max_lookbehind() local
1847 &max_lookbehind); in g_regex_get_max_lookbehind()
1849 return max_lookbehind; in g_regex_get_max_lookbehind()