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

/external/pcre/dist2/src/
H A Dpcre2_compile.c3865 uint32_t repeat_type, op_type; local
5148 repeat_type = 0; /* Force greedy */
5154 repeat_type = greedy_non_default;
5157 else repeat_type = greedy_default;
5233 repeats by setting op_type to add a suitable offset into repeat_type. Note
5268 /* Combine the op_type with the repeat_type */
5270 repeat_type += op_type;
5277 if (repeat_max == -1) *code++ = OP_STAR + repeat_type;
5278 else if (repeat_max == 1) *code++ = OP_QUERY + repeat_type;
5281 *code++ = OP_UPTO + repeat_type;
[all...]
H A Dpcre2_jit_compile.c7836 int repeat_type = 0, repeat_count = 0; local
7867 repeat_type = PRIVATE_DATA(matchingpath + 2);
7869 SLJIT_ASSERT(repeat_length != 0 && repeat_type != 0 && repeat_count != 0);
7870 if (repeat_type == OP_UPTO)
7872 if (repeat_type == OP_MINUPTO)
7982 if (repeat_type != 0)
7985 if (repeat_type == OP_EXACT)
7995 if (has_alternatives && opcode != OP_ONCE && opcode < OP_SBRA && repeat_type == 0)
8229 if (repeat_type == OP_MINUPTO)
8251 if (repeat_type
9903 int repeat_ptr = 0, repeat_type = 0, repeat_count = 0; local
[all...]
/external/python/cpython2/Modules/
H A Ditertoolsmodule.c3684 static PyTypeObject repeat_type; variable
3780 static PyTypeObject repeat_type = { variable
4115 &repeat_type,

Completed in 137 milliseconds