Home | History | Annotate | Download | only in src

Lines Matching refs:EatsAtLeast

1571 int ActionNode::EatsAtLeast(int still_to_find, int recursion_depth) {
1574 return on_success()->EatsAtLeast(still_to_find, recursion_depth + 1);
1578 int AssertionNode::EatsAtLeast(int still_to_find, int recursion_depth) {
1580 return on_success()->EatsAtLeast(still_to_find, recursion_depth + 1);
1584 int BackReferenceNode::EatsAtLeast(int still_to_find, int recursion_depth) {
1586 return on_success()->EatsAtLeast(still_to_find, recursion_depth + 1);
1590 int TextNode::EatsAtLeast(int still_to_find, int recursion_depth) {
1594 return answer + on_success()->EatsAtLeast(still_to_find - answer,
1599 int NegativeLookaheadChoiceNode::EatsAtLeast(int still_to_find,
1605 return node->EatsAtLeast(still_to_find, recursion_depth + 1);
1630 int node_eats_at_least = node->EatsAtLeast(still_to_find,
1638 int LoopChoiceNode::EatsAtLeast(int still_to_find, int recursion_depth) {
1643 int ChoiceNode::EatsAtLeast(int still_to_find, int recursion_depth) {
2550 int preload_characters = EatsAtLeast(4, 0);