Home
last modified time | relevance | path

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

/external/v8/src/regexp/
Djsregexp.h467 virtual int EatsAtLeast(int still_to_find, int budget, bool not_at_start) = 0;
485 bool not_at_start) = 0;
503 BoyerMooreLookahead* bm, bool not_at_start) { in FillInBMInfo() argument
528 void SaveBMInfo(BoyerMooreLookahead* bm, bool not_at_start, int offset) { in SaveBMInfo() argument
529 if (offset == 0) set_bm_info(not_at_start, bm); in SaveBMInfo()
545 BoyerMooreLookahead* bm_info(bool not_at_start) { in bm_info() argument
546 return bm_info_[not_at_start ? 1 : 0]; in bm_info()
557 void set_bm_info(bool not_at_start, BoyerMooreLookahead* bm) { in set_bm_info() argument
558 bm_info_[not_at_start ? 1 : 0] = bm; in set_bm_info()
586 BoyerMooreLookahead* bm, bool not_at_start) { in FillInBMInfo() argument
[all …]
Djsregexp.cc2260 bool not_at_start) { in EatsAtLeast() argument
2265 not_at_start); in EatsAtLeast()
2270 BoyerMooreLookahead* bm, bool not_at_start) { in FillInBMInfo() argument
2274 on_success()->FillInBMInfo(isolate, offset, budget - 1, bm, not_at_start); in FillInBMInfo()
2276 SaveBMInfo(bm, not_at_start, offset); in FillInBMInfo()
2282 bool not_at_start) { in EatsAtLeast() argument
2289 if (assertion_type() == AT_START && not_at_start) return still_to_find; in EatsAtLeast()
2292 not_at_start); in EatsAtLeast()
2297 BoyerMooreLookahead* bm, bool not_at_start) { in FillInBMInfo() argument
2299 if (assertion_type() == AT_START && not_at_start) return; in FillInBMInfo()
[all …]
Dregexp-ast.h379 bool not_at_start = false);
/external/v8/test/cctest/
Dtest-regexp.cc1115 Label not_at_start, newline, fail; in TEST() local
1116 m.CheckNotAtStart(0, &not_at_start); in TEST()
1126 m.Bind(&not_at_start); in TEST()