Home
last modified time | relevance | path

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

/external/chromium_org/v8/src/
Djsregexp.h585 virtual int EatsAtLeast(int still_to_find, int budget, bool not_at_start) = 0;
771 virtual int EatsAtLeast(int still_to_find, int budget, bool not_at_start);
838 virtual int EatsAtLeast(int still_to_find, int budget, bool not_at_start);
903 virtual int EatsAtLeast(int still_to_find, int budget, bool not_at_start);
938 virtual int EatsAtLeast(int still_to_find,
965 virtual int EatsAtLeast(int still_to_find, in EatsAtLeast() function
1061 virtual int EatsAtLeast(int still_to_find, int budget, bool not_at_start);
1116 virtual int EatsAtLeast(int still_to_find, int budget, bool not_at_start);
1149 virtual int EatsAtLeast(int still_to_find, int budget, bool not_at_start);
Djsregexp.cc2284 int ActionNode::EatsAtLeast(int still_to_find, in EatsAtLeast() function in v8::internal::ActionNode
2289 return on_success()->EatsAtLeast(still_to_find, in EatsAtLeast()
2308 int AssertionNode::EatsAtLeast(int still_to_find, in EatsAtLeast() function in v8::internal::AssertionNode
2318 return on_success()->EatsAtLeast(still_to_find, in EatsAtLeast()
2335 int BackReferenceNode::EatsAtLeast(int still_to_find, in EatsAtLeast() function in v8::internal::BackReferenceNode
2339 return on_success()->EatsAtLeast(still_to_find, in EatsAtLeast()
2345 int TextNode::EatsAtLeast(int still_to_find, in EatsAtLeast() function in v8::internal::TextNode
2352 return answer + on_success()->EatsAtLeast(still_to_find - answer, in EatsAtLeast()
2358 int NegativeLookaheadChoiceNode::EatsAtLeast(int still_to_find, in EatsAtLeast() function in v8::internal::NegativeLookaheadChoiceNode
2365 return node->EatsAtLeast(still_to_find, budget - 1, not_at_start); in EatsAtLeast()
[all …]