Home
last modified time | relevance | path

Searched refs:max_number_of_chars (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/regexp/
Djsregexp.cc3694 for (int max_number_of_chars = 4; in FindWorthwhileInterval() local
3695 max_number_of_chars < kMaxMax; in FindWorthwhileInterval()
3696 max_number_of_chars *= 2) { in FindWorthwhileInterval()
3698 FindBestInterval(max_number_of_chars, biggest_points, from, to); in FindWorthwhileInterval()
3712 int max_number_of_chars, int old_biggest_points, int* from, int* to) { in FindBestInterval() argument
3716 while (i < length_ && Count(i) > max_number_of_chars) i++; in FindBestInterval()
3721 while (i < length_ && Count(i) <= max_number_of_chars) { in FindBestInterval()
Djsregexp.h1178 int max_number_of_chars, int old_biggest_points, int* from, int* to);