Lines Matching defs:on_success
591 explicit SeqRegExpNode(RegExpNode* on_success) in SeqRegExpNode()
593 RegExpNode* on_success() { return on_success_; } in on_success() function
684 ActionNode(ActionType action_type, RegExpNode* on_success) in ActionNode()
695 RegExpNode* on_success) in TextNode()
698 RegExpNode* on_success) in TextNode()
767 static AssertionNode* AtEnd(RegExpNode* on_success) { in AtEnd()
770 static AssertionNode* AtStart(RegExpNode* on_success) { in AtStart()
773 static AssertionNode* AtBoundary(RegExpNode* on_success) { in AtBoundary()
776 static AssertionNode* AtNonBoundary(RegExpNode* on_success) { in AtNonBoundary()
779 static AssertionNode* AfterNewline(RegExpNode* on_success) { in AfterNewline()
799 AssertionNode(AssertionType t, RegExpNode* on_success) in AssertionNode()
808 bool read_backward, RegExpNode* on_success) in BackReferenceNode()