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

/external/v8/src/regexp/
H A Djsregexp.cc3764 // occur in the subject string in the range between min_lookahead and
3768 int BoyerMooreLookahead::GetSkipTable(int min_lookahead, argument
3779 int skip = max_lookahead + 1 - min_lookahead;
3781 for (int i = max_lookahead; i >= min_lookahead; i--) {
3798 int min_lookahead = 0; local
3801 if (!FindWorthwhileInterval(&min_lookahead, &max_lookahead)) return;
3805 for (int i = max_lookahead; i >= min_lookahead; i--) {
3821 int lookahead_width = max_lookahead + 1 - min_lookahead;
3848 min_lookahead, max_lookahead, boolean_skip_table);

Completed in 274 milliseconds