Home
last modified time | relevance | path

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

/external/v8/src/regexp/
Djsregexp.h501 virtual int EatsAtLeast(int still_to_find, int budget, bool not_at_start) = 0;
519 bool not_at_start) = 0;
537 BoyerMooreLookahead* bm, bool not_at_start) { in FillInBMInfo() argument
562 void SaveBMInfo(BoyerMooreLookahead* bm, bool not_at_start, int offset) { in SaveBMInfo() argument
563 if (offset == 0) set_bm_info(not_at_start, bm); in SaveBMInfo()
579 BoyerMooreLookahead* bm_info(bool not_at_start) { in bm_info() argument
580 return bm_info_[not_at_start ? 1 : 0]; in bm_info()
591 void set_bm_info(bool not_at_start, BoyerMooreLookahead* bm) { in set_bm_info() argument
592 bm_info_[not_at_start ? 1 : 0] = bm; in set_bm_info()
620 BoyerMooreLookahead* bm, bool not_at_start) { in FillInBMInfo() argument
[all …]
Djsregexp.cc2291 bool not_at_start) { in EatsAtLeast() argument
2296 not_at_start); in EatsAtLeast()
2301 BoyerMooreLookahead* bm, bool not_at_start) { in FillInBMInfo() argument
2305 on_success()->FillInBMInfo(isolate, offset, budget - 1, bm, not_at_start); in FillInBMInfo()
2307 SaveBMInfo(bm, not_at_start, offset); in FillInBMInfo()
2313 bool not_at_start) { in EatsAtLeast() argument
2320 if (assertion_type() == AT_START && not_at_start) return still_to_find; in EatsAtLeast()
2323 not_at_start); in EatsAtLeast()
2328 BoyerMooreLookahead* bm, bool not_at_start) { in FillInBMInfo() argument
2330 if (assertion_type() == AT_START && not_at_start) return; in FillInBMInfo()
[all …]
Dregexp-ast.h391 bool not_at_start = false);
/external/v8/test/cctest/
Dtest-regexp.cc1164 Label not_at_start, newline, fail; in TEST() local
1165 m.CheckNotAtStart(0, &not_at_start); in TEST()
1175 m.Bind(&not_at_start); in TEST()