Lines Matching refs:EatsAtLeast
1604 int ActionNode::EatsAtLeast(int still_to_find, int recursion_depth) { in EatsAtLeast() function in v8::internal::ActionNode
1607 return on_success()->EatsAtLeast(still_to_find, recursion_depth + 1); in EatsAtLeast()
1611 int AssertionNode::EatsAtLeast(int still_to_find, int recursion_depth) { in EatsAtLeast() function in v8::internal::AssertionNode
1613 return on_success()->EatsAtLeast(still_to_find, recursion_depth + 1); in EatsAtLeast()
1617 int BackReferenceNode::EatsAtLeast(int still_to_find, int recursion_depth) { in EatsAtLeast() function in v8::internal::BackReferenceNode
1619 return on_success()->EatsAtLeast(still_to_find, recursion_depth + 1); in EatsAtLeast()
1623 int TextNode::EatsAtLeast(int still_to_find, int recursion_depth) { in EatsAtLeast() function in v8::internal::TextNode
1627 return answer + on_success()->EatsAtLeast(still_to_find - answer, in EatsAtLeast()
1632 int NegativeLookaheadChoiceNode:: EatsAtLeast(int still_to_find, in EatsAtLeast() function in v8::internal::NegativeLookaheadChoiceNode
1638 return node->EatsAtLeast(still_to_find, recursion_depth + 1); in EatsAtLeast()
1663 int node_eats_at_least = node->EatsAtLeast(still_to_find, in EatsAtLeastHelper()
1671 int LoopChoiceNode::EatsAtLeast(int still_to_find, int recursion_depth) { in EatsAtLeast() function in v8::internal::LoopChoiceNode
1676 int ChoiceNode::EatsAtLeast(int still_to_find, int recursion_depth) { in EatsAtLeast() function in v8::internal::ChoiceNode
2526 int preload_characters = EatsAtLeast(4, 0); in CalculatePreloadCharacters()