Home
last modified time | relevance | path

Searched refs:max_match (Results 1 – 10 of 10) sorted by relevance

/external/elfutils/libdw/
Ddwarf_getsrc_file.c71 size_t max_match = *nsrcs ?: ~0u; in dwarf_getsrc_file() local
151 if (cur_match < max_match) in dwarf_getsrc_file()
175 if (cur_match == max_match) in dwarf_getsrc_file()
/external/oprofile/libregex/
Dop_regex.cpp192 regmatch_t match[max_match]; in do_execute()
194 op_regexec(regexp.regexp, str, match, max_match) && iter < limit; in do_execute()
210 if (sub_expr >= max_match) in get_match()
Dop_regex.h111 static const size_t max_match = 16; variable
Dstl.pat.in13 # limited, see static const size_t max_match; in op_regex.h. Note than mangled
/external/elfutils/libdwfl/
Ddwfl_module_getsrc_file.c70 size_t max_match = *nsrcs ?: ~0u; in dwfl_module_getsrc_file() local
152 if (cur_match < max_match) in dwfl_module_getsrc_file()
/external/v8/src/
Dast.h2207 virtual int max_match() = 0;
2233 virtual int max_match() { return max_match_; } in max_match() function
2254 virtual int max_match() { return max_match_; } in max_match() function
2282 virtual int max_match() { return 0; } in max_match() function
2327 virtual int max_match() { return 1; } in max_match() function
2364 virtual int max_match() { return data_.length(); } in max_match() function
2383 virtual int max_match() { return length_; } in max_match() function
2405 if (max > 0 && body->max_match() > kInfinity / max) { in RegExpQuantifier()
2408 max_match_ = max * body->max_match(); in RegExpQuantifier()
2425 virtual int max_match() { return max_match_; } in max_match() function
[all …]
Dast.cc728 if (node->max_match() > 0) { return false; } in IsAnchoredAtStart()
739 if (node->max_match() > 0) { return false; } in IsAnchoredAtEnd()
956 max_match_ = first_alternative->max_match(); in RegExpDisjunction()
960 max_match_ = Max(max_match_, alternative->max_match()); in RegExpDisjunction()
973 int node_max_match = node->max_match(); in RegExpAlternative()
977 max_match_ += node->max_match(); in RegExpAlternative()
Djsregexp.cc5270 int max_length = data->tree->max_match(); in Compile()
Dparser.cc230 if (atom->max_match() == 0) { in AddQuantifierToAtom()
/external/v8/test/cctest/
Dtest-regexp.cc110 int max_match; member
124 int max_match = result.tree->max_match(); in CheckMinMaxMatch() local
125 MinMaxPair pair = { min_match, max_match }; in CheckMinMaxMatch()
136 CHECK_EQ(max, min_max.max_match); \