Home
last modified time | relevance | path

Searched refs:OP_UPTO (Results 1 – 11 of 11) sorted by relevance

/external/pcre/dist2/src/
Dpcre2_auto_possess.c331 if (c == OP_UPTO || c == OP_MINUPTO || c == OP_EXACT || c == OP_POSUPTO) in get_chr_property_list()
1123 list[1] = c == OP_STAR || c == OP_PLUS || c == OP_QUERY || c == OP_UPTO; in PRIV()
1153 case OP_UPTO: in PRIV()
1154 *code += OP_POSUPTO - OP_UPTO; in PRIV()
1275 case OP_UPTO: in PRIV()
Dpcre2_find_bracket.c161 case OP_UPTO: in PRIV()
Dpcre2_pattern_info.c315 case OP_UPTO: in pcre2_callout_enumerate()
Dpcre2_study.c663 case OP_UPTO: in find_minlength()
1168 case OP_UPTO: in set_start_bits()
Dpcre2_printint.c498 case OP_UPTO: in pcre2_printint()
Dpcre2_jit_compile.c946 case OP_UPTO: in next_opcode()
1452 …e_data_ptrs[max_end - common->start - LINK_SIZE + 1] = (type == OP_BRAZERO) ? OP_UPTO : OP_MINUPTO; in detect_repeat()
1504 case OP_UPTO: \
10364 if (repeat_type == OP_UPTO) in compile_bracket_matchingpath()
10818 else if (repeat_type == OP_UPTO) in compile_bracket_matchingpath()
11248 *opcode -= OP_CRRANGE - OP_UPTO; in get_iterator_parameters()
11274 case OP_UPTO: in get_iterator_parameters()
11384 case OP_UPTO: in compile_iterator_matchingpath()
11396 if (opcode == OP_UPTO) in compile_iterator_matchingpath()
11401 if (opcode == OP_UPTO) in compile_iterator_matchingpath()
[all …]
Dpcre2_internal.h1391 OP_UPTO, /* 39 From 0 to n matches of one character, caseful*/ enumerator
Dpcre2_compile.c7301 *code++ = OP_UPTO + repeat_type; in compile_branch()
7319 *code++ = OP_UPTO + repeat_type; in compile_branch()
7367 *code++ = OP_UPTO + repeat_type; in compile_branch()
8441 case OP_UPTO: in find_recurse()
Dpcre2_dfa_match.c2514 case OP_UPTO: in internal_dfa_match()
Dpcre2_match.c1066 case OP_UPTO: in match()
/external/pcre/dist2/
DHACKING497 OP_UPTO OP_UPTOI
506 OP_UPTO matches from 0 to the given number. A repeat with a non-zero minimum
507 and a fixed maximum is coded as an OP_EXACT followed by an OP_UPTO (or