Lines Matching refs:AssertionNode
758 class AssertionNode: public SeqRegExpNode {
767 static AssertionNode* AtEnd(RegExpNode* on_success) { in AtEnd()
768 return new(on_success->zone()) AssertionNode(AT_END, on_success); in AtEnd()
770 static AssertionNode* AtStart(RegExpNode* on_success) { in AtStart()
771 return new(on_success->zone()) AssertionNode(AT_START, on_success); in AtStart()
773 static AssertionNode* AtBoundary(RegExpNode* on_success) { in AtBoundary()
774 return new(on_success->zone()) AssertionNode(AT_BOUNDARY, on_success); in AtBoundary()
776 static AssertionNode* AtNonBoundary(RegExpNode* on_success) { in AtNonBoundary()
777 return new(on_success->zone()) AssertionNode(AT_NON_BOUNDARY, on_success); in AtNonBoundary()
779 static AssertionNode* AfterNewline(RegExpNode* on_success) { in AfterNewline()
780 return new(on_success->zone()) AssertionNode(AFTER_NEWLINE, on_success); in AfterNewline()
799 AssertionNode(AssertionType t, RegExpNode* on_success) in AssertionNode() function