Home
last modified time | relevance | path

Searched refs:repeat_max (Results 1 – 6 of 6) sorted by relevance

/third_party/boost/libs/intrusive/perf/
Dtree_perf_test.cpp98 for( size_type repeat = 0, repeat_max = NumRepeat in test_insertion() local
99 ; repeat != repeat_max in test_insertion()
118 for( size_type repeat = 0, repeat_max = NumRepeat in test_insertion() local
119 ; repeat != repeat_max in test_insertion()
/third_party/glib/glib/pcre/
Dpcre_compile.c3441 int repeat_min = 0, repeat_max = 0; /* To please picky compilers */ in compile_branch() local
4733 ptr = read_repeat_counts(ptr+1, &repeat_min, &repeat_max, errorcodeptr); in compile_branch()
4739 repeat_max = -1; in compile_branch()
4744 repeat_max = -1; in compile_branch()
4749 repeat_max = 1; in compile_branch()
4766 reqvary = (repeat_min == repeat_max)? 0 : REQ_VARY; in compile_branch()
4873 repeat_max < 0 && in compile_branch()
4898 repeat_max < 0 && in compile_branch()
4919 if (repeat_max == 0) goto END_REPEAT; in compile_branch()
4940 if (repeat_max == -1) *code++ = OP_STAR + repeat_type; in compile_branch()
[all …]
/third_party/pcre2/pcre2/src/
Dpcre2_compile.c5310 uint32_t repeat_min = 0, repeat_max = 0; /* To please picky compilers */ in compile_branch() local
6830 repeat_max = *(++pptr); in compile_branch()
6837 repeat_max = REPEAT_UNLIMITED; in compile_branch()
6844 repeat_max = REPEAT_UNLIMITED; in compile_branch()
6851 repeat_max = 1; in compile_branch()
6859 reqvary = (repeat_min == repeat_max)? 0 : REQ_VARY; in compile_branch()
6921 if (repeat_max == 1 && repeat_min == 1) goto END_REPEAT; in compile_branch()
6963 if (repeat_max == 0) in compile_branch()
6968 if (repeat_max == 1 && repeat_min == 1) goto END_REPEAT; in compile_branch()
6970 if (repeat_min == 0 && repeat_max == REPEAT_UNLIMITED) in compile_branch()
[all …]
/third_party/boost/libs/xpressive/test/
Dtest4.hpp82 , regex_type(L('f') >> repeat<1,repeat_max>(L('o'))) in get_test_cases()
Dtest_typeof.cpp78 TYPEOF_TEST(('f' >> repeat<1,repeat_max>('o'))); in test_misc2()
/third_party/boost/boost/xpressive/
Dregex_primitives.hpp232 unsigned int const repeat_max = UINT_MAX-1; variable
882 detail::ignore_unused(repeat_max); in ignore_unused_regex_primitives()