Home
last modified time | relevance | path

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

/external/pcre/dist2/src/
Dpcre2_compile.c4921 uint32_t repeat_type, op_type; in compile_branch() local
6444 repeat_type = 0; /* Force greedy */ in compile_branch()
6452 repeat_type = greedy_non_default; in compile_branch()
6457 repeat_type = greedy_default; in compile_branch()
6530 *code++ = OP_CRSTAR + repeat_type; in compile_branch()
6532 *code++ = OP_CRPLUS + repeat_type; in compile_branch()
6534 *code++ = OP_CRQUERY + repeat_type; in compile_branch()
6537 *code++ = OP_CRRANGE + repeat_type; in compile_branch()
6699 *previous++ = OP_BRAZERO + repeat_type; in compile_branch()
6714 *previous++ = OP_BRAZERO + repeat_type; in compile_branch()
[all …]
Dpcre2_jit_compile.c8927 int repeat_type = 0, repeat_count = 0; in compile_bracket_matchingpath() local
8958 repeat_type = PRIVATE_DATA(matchingpath + 2); in compile_bracket_matchingpath()
8960 SLJIT_ASSERT(repeat_length != 0 && repeat_type != 0 && repeat_count != 0); in compile_bracket_matchingpath()
8961 if (repeat_type == OP_UPTO) in compile_bracket_matchingpath()
8963 if (repeat_type == OP_MINUPTO) in compile_bracket_matchingpath()
9071 if (repeat_type != 0) in compile_bracket_matchingpath()
9074 if (repeat_type == OP_EXACT) in compile_bracket_matchingpath()
9084 if (has_alternatives && opcode != OP_ONCE && opcode < OP_SBRA && repeat_type == 0) in compile_bracket_matchingpath()
9318 if (repeat_type == OP_MINUPTO) in compile_bracket_matchingpath()
9340 if (repeat_type == OP_MINUPTO) in compile_bracket_matchingpath()
[all …]
/external/python/cpython2/Modules/
Ditertoolsmodule.c3674 static PyTypeObject repeat_type; variable
3770 static PyTypeObject repeat_type = { variable
4105 &repeat_type, in inititertools()
/external/python/cpython3/Modules/
Ditertoolsmodule.c4188 static PyTypeObject repeat_type; variable
4290 static PyTypeObject repeat_type = { variable
4677 &repeat_type, in PyInit_itertools()