Home
last modified time | relevance | path

Searched refs:repeat_type (Results 1 – 2 of 2) sorted by relevance

/external/pcre/dist/
Dpcre_compile.c4459 int repeat_type, op_type; in compile_branch() local
5683 repeat_type = 0; /* Force greedy */ in compile_branch()
5689 repeat_type = greedy_non_default; in compile_branch()
5692 else repeat_type = greedy_default; in compile_branch()
5804 repeat_type += op_type; in compile_branch()
5811 if (repeat_max == -1) *code++ = OP_STAR + repeat_type; in compile_branch()
5812 else if (repeat_max == 1) *code++ = OP_QUERY + repeat_type; in compile_branch()
5815 *code++ = OP_UPTO + repeat_type; in compile_branch()
5828 *code++ = OP_PLUS + repeat_type; in compile_branch()
5833 *code++ = OP_UPTO + repeat_type; in compile_branch()
[all …]
Dpcre_jit_compile.c6990 int repeat_type = 0, repeat_count = 0; in compile_bracket_matchingpath() local
7021 repeat_type = PRIVATE_DATA(matchingpath + 2); in compile_bracket_matchingpath()
7023 SLJIT_ASSERT(repeat_length != 0 && repeat_type != 0 && repeat_count != 0); in compile_bracket_matchingpath()
7024 if (repeat_type == OP_UPTO) in compile_bracket_matchingpath()
7026 if (repeat_type == OP_MINUPTO) in compile_bracket_matchingpath()
7139 if (repeat_type != 0) in compile_bracket_matchingpath()
7142 if (repeat_type == OP_EXACT) in compile_bracket_matchingpath()
7152 if (has_alternatives && opcode != OP_ONCE && opcode < OP_SBRA && repeat_type == 0) in compile_bracket_matchingpath()
7381 if (repeat_type == OP_MINUPTO) in compile_bracket_matchingpath()
7403 if (repeat_type == OP_MINUPTO) in compile_bracket_matchingpath()
[all …]