Home
last modified time | relevance | path

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

/external/v8/src/regexp/
Djsregexp.h450 virtual int EatsAtLeast(int still_to_find, int budget, bool not_at_start) = 0;
468 bool not_at_start) = 0;
486 BoyerMooreLookahead* bm, bool not_at_start) { in FillInBMInfo() argument
511 void SaveBMInfo(BoyerMooreLookahead* bm, bool not_at_start, int offset) { in SaveBMInfo() argument
512 if (offset == 0) set_bm_info(not_at_start, bm); in SaveBMInfo()
528 BoyerMooreLookahead* bm_info(bool not_at_start) { in bm_info() argument
529 return bm_info_[not_at_start ? 1 : 0]; in bm_info()
540 void set_bm_info(bool not_at_start, BoyerMooreLookahead* bm) { in set_bm_info() argument
541 bm_info_[not_at_start ? 1 : 0] = bm; in set_bm_info()
569 BoyerMooreLookahead* bm, bool not_at_start) { in FillInBMInfo() argument
[all …]
Djsregexp.cc2287 bool not_at_start) { in EatsAtLeast() argument
2292 not_at_start); in EatsAtLeast()
2297 BoyerMooreLookahead* bm, bool not_at_start) { in FillInBMInfo() argument
2301 on_success()->FillInBMInfo(isolate, offset, budget - 1, bm, not_at_start); in FillInBMInfo()
2303 SaveBMInfo(bm, not_at_start, offset); in FillInBMInfo()
2309 bool not_at_start) { in EatsAtLeast() argument
2316 if (assertion_type() == AT_START && not_at_start) return still_to_find; in EatsAtLeast()
2319 not_at_start); in EatsAtLeast()
2324 BoyerMooreLookahead* bm, bool not_at_start) { in FillInBMInfo() argument
2326 if (assertion_type() == AT_START && not_at_start) return; in FillInBMInfo()
[all …]
Dregexp-ast.h391 bool not_at_start = false);