Home
last modified time | relevance | path

Searched refs:OP_ALLANY (Results 1 – 8 of 8) sorted by relevance

/external/pcre/dist2/src/
Dpcre2_study.c336 case OP_ALLANY: in find_minlength()
911 case OP_ALLANY: in set_start_bits()
1295 case OP_ALLANY: in set_start_bits()
Dpcre2_match.c2398 case OP_ALLANY: in match()
4496 case OP_ALLANY: in match()
4748 case OP_ALLANY: in match()
5258 case OP_ALLANY: in match()
5383 case OP_ALLANY: in match()
5823 case OP_ALLANY: in match()
6068 case OP_ALLANY: in match()
Dpcre2_compile.c1115 case OP_ALLANY: in find_fixedlength()
1589 case OP_ALLANY: in could_be_empty_branch()
4217 *code++ = ((options & PCRE2_DOTALL) != 0)? OP_ALLANY: OP_ANY; in compile_branch()
4307 *code++ = negate_class? OP_ALLANY : OP_FAIL; in compile_branch()
7430 *code++ = (escape == ESC_C)? OP_ALLANY : escape; in compile_branch()
7432 *code++ = (!utf && escape == ESC_C)? OP_ALLANY : escape; in compile_branch()
7989 if (scode[1] != OP_ALLANY || (bracket_map & cb->backref_map) != 0 || in is_anchored()
Dpcre2_auto_possess.c372 case OP_ALLANY: in get_chr_property_list()
Dpcre2_internal.h1363 OP_ALLANY, /* 13 Match any character */ enumerator
Dpcre2_jit_compile.c632 case OP_ALLANY: in next_opcode()
1585 case OP_ALLANY: in get_framesize()
3664 case OP_ALLANY: in scan_prefix()
5560 compile_char1_matchingpath(common, OP_ALLANY, cc, backtracks, FALSE); in compile_xclass_matchingpath()
6330 case OP_ALLANY: in compile_char1_matchingpath()
9367 case OP_ALLANY: in compile_matchingpath()
Dpcre2_dfa_match.c859 case OP_ALLANY: in internal_dfa_match()
/external/pcre/dist2/
DHACKING193 OP_ALLANY match any one character, including newline
231 OP_ALLANY is used for '.' when PCRE2_DOTALL is set. It is also used for \C in