Lines Matching full:on_success

591   explicit SeqRegExpNode(RegExpNode* on_success)  in SeqRegExpNode()  argument
592 : RegExpNode(on_success->zone()), on_success_(on_success) { } in SeqRegExpNode()
593 RegExpNode* on_success() { return on_success_; } in on_success() function
621 static ActionNode* SetRegister(int reg, int val, RegExpNode* on_success);
622 static ActionNode* IncrementRegister(int reg, RegExpNode* on_success);
625 RegExpNode* on_success);
626 static ActionNode* ClearCaptures(Interval range, RegExpNode* on_success);
629 RegExpNode* on_success);
634 RegExpNode* on_success);
638 RegExpNode* on_success);
646 return on_success()->GetQuickCheckDetails( in GetQuickCheckDetails()
684 ActionNode(ActionType action_type, RegExpNode* on_success) in ActionNode() argument
685 : SeqRegExpNode(on_success), in ActionNode()
695 RegExpNode* on_success) in TextNode() argument
696 : SeqRegExpNode(on_success), elms_(elms), read_backward_(read_backward) {} in TextNode()
698 RegExpNode* on_success) in TextNode() argument
699 : SeqRegExpNode(on_success), in TextNode()
708 RegExpNode* on_success,
715 RegExpNode* on_success,
767 static AssertionNode* AtEnd(RegExpNode* on_success) { in AtEnd() argument
768 return new(on_success->zone()) AssertionNode(AT_END, on_success); in AtEnd()
770 static AssertionNode* AtStart(RegExpNode* on_success) { in AtStart() argument
771 return new(on_success->zone()) AssertionNode(AT_START, on_success); in AtStart()
773 static AssertionNode* AtBoundary(RegExpNode* on_success) { in AtBoundary() argument
774 return new(on_success->zone()) AssertionNode(AT_BOUNDARY, on_success); in AtBoundary()
776 static AssertionNode* AtNonBoundary(RegExpNode* on_success) { in AtNonBoundary() argument
777 return new(on_success->zone()) AssertionNode(AT_NON_BOUNDARY, on_success); in AtNonBoundary()
779 static AssertionNode* AfterNewline(RegExpNode* on_success) { in AfterNewline() argument
780 return new(on_success->zone()) AssertionNode(AFTER_NEWLINE, on_success); in AfterNewline()
799 AssertionNode(AssertionType t, RegExpNode* on_success) in AssertionNode() argument
800 : SeqRegExpNode(on_success), assertion_type_(t) { } in AssertionNode()
808 bool read_backward, RegExpNode* on_success) in BackReferenceNode() argument
809 : SeqRegExpNode(on_success), in BackReferenceNode()