Home
last modified time | relevance | path

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

/external/v8/src/regexp/
Djsregexp.h839 class EndNode: public RegExpNode {
842 EndNode(Action action, Zone* zone) : RegExpNode(zone), action_(action) {} in EndNode() function
866 class NegativeSubmatchSuccess: public EndNode {
873 : EndNode(NEGATIVE_SUBMATCH_SUCCESS, zone), in NegativeSubmatchSuccess()
Djsregexp.cc964 EndNode* accept() { return accept_; } in accept()
995 EndNode* accept_;
1048 accept_ = new(zone) EndNode(EndNode::ACCEPT, zone); in RegExpCompiler()
1400 void EndNode::Emit(RegExpCompiler* compiler, Trace* trace) { in Emit()
4580 void DotPrinter::VisitEnd(EndNode* that) { in VisitEnd()
6317 void Analysis::VisitEnd(EndNode* that) { in VisitEnd()
6490 void DispatchTableConstructor::VisitEnd(EndNode* that) { in VisitEnd()
6699 if (node == nullptr) node = new (zone) EndNode(EndNode::BACKTRACK, zone); in Compile()