Lines Matching refs:AssertionNode
734 class AssertionNode: public SeqRegExpNode {
743 static AssertionNode* AtEnd(RegExpNode* on_success) { in AtEnd()
744 return new(on_success->zone()) AssertionNode(AT_END, on_success); in AtEnd()
746 static AssertionNode* AtStart(RegExpNode* on_success) { in AtStart()
747 return new(on_success->zone()) AssertionNode(AT_START, on_success); in AtStart()
749 static AssertionNode* AtBoundary(RegExpNode* on_success) { in AtBoundary()
750 return new(on_success->zone()) AssertionNode(AT_BOUNDARY, on_success); in AtBoundary()
752 static AssertionNode* AtNonBoundary(RegExpNode* on_success) { in AtNonBoundary()
753 return new(on_success->zone()) AssertionNode(AT_NON_BOUNDARY, on_success); in AtNonBoundary()
755 static AssertionNode* AfterNewline(RegExpNode* on_success) { in AfterNewline()
756 return new(on_success->zone()) AssertionNode(AFTER_NEWLINE, on_success); in AfterNewline()
775 AssertionNode(AssertionType t, RegExpNode* on_success) in AssertionNode() function