Home
last modified time | relevance | path

Searched refs:still_to_find (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/
Djsregexp.h616 virtual int EatsAtLeast(int still_to_find,
786 virtual int EatsAtLeast(int still_to_find,
853 virtual int EatsAtLeast(int still_to_find,
924 virtual int EatsAtLeast(int still_to_find,
955 virtual int EatsAtLeast(int still_to_find,
979 virtual int EatsAtLeast(int still_to_find, in EatsAtLeast() argument
1063 virtual int EatsAtLeast(int still_to_find,
1066 int EatsAtLeastHelper(int still_to_find,
1115 virtual int EatsAtLeast(int still_to_find,
1142 virtual int EatsAtLeast(int still_to_find,
Djsregexp.cc1709 int ActionNode::EatsAtLeast(int still_to_find, in EatsAtLeast() argument
1714 return on_success()->EatsAtLeast(still_to_find, in EatsAtLeast()
1720 int AssertionNode::EatsAtLeast(int still_to_find, in EatsAtLeast() argument
1729 if (type() == AT_START && not_at_start) return still_to_find; in EatsAtLeast()
1730 return on_success()->EatsAtLeast(still_to_find, in EatsAtLeast()
1736 int BackReferenceNode::EatsAtLeast(int still_to_find, in EatsAtLeast() argument
1740 return on_success()->EatsAtLeast(still_to_find, in EatsAtLeast()
1746 int TextNode::EatsAtLeast(int still_to_find, in EatsAtLeast() argument
1750 if (answer >= still_to_find) return answer; in EatsAtLeast()
1753 return answer + on_success()->EatsAtLeast(still_to_find - answer, in EatsAtLeast()
[all …]