Searched defs:max_number_of_chars (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/v8/src/
H A Djsregexp.cc3657 for (int max_number_of_chars = 4;
3658 max_number_of_chars < kMaxMax;
3659 max_number_of_chars *= 2) {
3661 FindBestInterval(max_number_of_chars, biggest_points, from, to);
3670 // max_number_of_chars that can occur at this position. Calculates the number
3675 int max_number_of_chars, int old_biggest_points, int* from, int* to) {
3679 while (i < length_ && Count(i) > max_number_of_chars) i++;
3684 while (i < length_ && Count(i) <= max_number_of_chars) {
3674 FindBestInterval( int max_number_of_chars, int old_biggest_points, int* from, int* to) argument

Completed in 78 milliseconds