Searched refs:RegExpQuantifier (Results 1 – 5 of 5) sorted by relevance
/external/v8/src/regexp/ |
D | regexp-ast.cc | 60 Interval RegExpQuantifier::CaptureRegisters() { in CaptureRegisters() 246 void* RegExpUnparser::VisitQuantifier(RegExpQuantifier* that, void* data) { in VisitQuantifier()
|
D | regexp-parser.cc | 602 RegExpQuantifier::QuantifierType quantifier_type = RegExpQuantifier::GREEDY; in ParseDisjunction() 604 quantifier_type = RegExpQuantifier::NON_GREEDY; in ParseDisjunction() 608 quantifier_type = RegExpQuantifier::POSSESSIVE; in ParseDisjunction() 1746 int min, int max, RegExpQuantifier::QuantifierType quantifier_type) { in AddQuantifierToAtom() 1789 terms_.Add(new (zone()) RegExpQuantifier(min, max, quantifier_type, atom), in AddQuantifierToAtom()
|
D | regexp-ast.h | 372 class RegExpQuantifier final : public RegExpTree { 375 RegExpQuantifier(int min, int max, QuantifierType type, RegExpTree* body) in RegExpQuantifier() function 392 RegExpQuantifier* AsQuantifier() override;
|
D | regexp-parser.h | 116 RegExpQuantifier::QuantifierType type);
|
D | jsregexp.cc | 5445 RegExpNode* RegExpQuantifier::ToNode(RegExpCompiler* compiler, in ToNode() 5494 RegExpNode* RegExpQuantifier::ToNode(int min, in ToNode() 6664 RegExpNode* loop_node = RegExpQuantifier::ToNode( in Compile()
|