Home
last modified time | relevance | path

Searched refs:not_at_start (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/regexp/
Djsregexp.h480 virtual int EatsAtLeast(int still_to_find, int budget, bool not_at_start) = 0;
498 bool not_at_start) = 0;
516 BoyerMooreLookahead* bm, bool not_at_start) { in FillInBMInfo() argument
539 void SaveBMInfo(BoyerMooreLookahead* bm, bool not_at_start, int offset) { in SaveBMInfo() argument
540 if (offset == 0) set_bm_info(not_at_start, bm); in SaveBMInfo()
556 BoyerMooreLookahead* bm_info(bool not_at_start) { in bm_info() argument
557 return bm_info_[not_at_start ? 1 : 0]; in bm_info()
568 void set_bm_info(bool not_at_start, BoyerMooreLookahead* bm) { in set_bm_info() argument
569 bm_info_[not_at_start ? 1 : 0] = bm; in set_bm_info()
597 BoyerMooreLookahead* bm, bool not_at_start) { in FillInBMInfo() argument
[all …]
Djsregexp.cc2226 bool not_at_start) { in EatsAtLeast() argument
2231 not_at_start); in EatsAtLeast()
2236 BoyerMooreLookahead* bm, bool not_at_start) { in FillInBMInfo() argument
2238 on_success()->FillInBMInfo(isolate, offset, budget - 1, bm, not_at_start); in FillInBMInfo()
2240 SaveBMInfo(bm, not_at_start, offset); in FillInBMInfo()
2246 bool not_at_start) { in EatsAtLeast() argument
2253 if (assertion_type() == AT_START && not_at_start) return still_to_find; in EatsAtLeast()
2256 not_at_start); in EatsAtLeast()
2261 BoyerMooreLookahead* bm, bool not_at_start) { in FillInBMInfo() argument
2263 if (assertion_type() == AT_START && not_at_start) return; in FillInBMInfo()
[all …]
Dregexp-ast.h430 bool not_at_start = false);