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

/external/pcre/dist/
H A Dpcre_compile.c4389 int repeat_type, op_type; local
5581 repeat_type = 0; /* Force greedy */
5587 repeat_type = greedy_non_default;
5590 else repeat_type = greedy_default;
5672 repeats by setting op_type to add a suitable offset into repeat_type. Note
5700 /* Combine the op_type with the repeat_type */
5702 repeat_type += op_type;
5709 if (repeat_max == -1) *code++ = OP_STAR + repeat_type;
5710 else if (repeat_max == 1) *code++ = OP_QUERY + repeat_type;
5713 *code++ = OP_UPTO + repeat_type;
[all...]
H A Dpcre_jit_compile.c6938 int repeat_type = 0, repeat_count = 0; local
6969 repeat_type = PRIVATE_DATA(matchingpath + 2);
6971 SLJIT_ASSERT(repeat_length != 0 && repeat_type != 0 && repeat_count != 0);
6972 if (repeat_type == OP_UPTO)
6974 if (repeat_type == OP_MINUPTO)
7087 if (repeat_type != 0)
7090 if (repeat_type == OP_EXACT)
7100 if (has_alternatives && opcode != OP_ONCE && opcode < OP_SBRA && repeat_type == 0)
7327 if (repeat_type == OP_MINUPTO)
7349 if (repeat_type
8808 int repeat_ptr = 0, repeat_type = 0, repeat_count = 0; local
[all...]

Completed in 1881 milliseconds