Home
last modified time | relevance | path

Searched refs:is_greedy (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/regexp/
Dregexp-compiler-tonode.cc746 return ToNode(min(), max(), is_greedy(), body(), compiler, on_success); in ToNode()
1456 RegExpNode* RegExpQuantifier::ToNode(int min, int max, bool is_greedy, in ToNode() argument
1501 ToNode(0, new_max, is_greedy, body, compiler, on_success, true); in ToNode()
1519 if (is_greedy) { in ToNode()
1575 if (is_greedy) { in ToNode()
Dregexp-ast.h438 static RegExpNode* ToNode(int min, int max, bool is_greedy, RegExpTree* body,
451 bool is_greedy() const { return quantifier_type_ == GREEDY; } in is_greedy() function
Dregexp-ast.cc253 os_ << (that->is_greedy() ? "g " : that->is_possessive() ? "p " : "n "); in VisitQuantifier()