Lines Matching refs:AssertionNode
883 class AssertionNode: public SeqRegExpNode {
892 static AssertionNode* AtEnd(RegExpNode* on_success) { in AtEnd()
893 return new(on_success->zone()) AssertionNode(AT_END, on_success); in AtEnd()
895 static AssertionNode* AtStart(RegExpNode* on_success) { in AtStart()
896 return new(on_success->zone()) AssertionNode(AT_START, on_success); in AtStart()
898 static AssertionNode* AtBoundary(RegExpNode* on_success) { in AtBoundary()
899 return new(on_success->zone()) AssertionNode(AT_BOUNDARY, on_success); in AtBoundary()
901 static AssertionNode* AtNonBoundary(RegExpNode* on_success) { in AtNonBoundary()
902 return new(on_success->zone()) AssertionNode(AT_NON_BOUNDARY, on_success); in AtNonBoundary()
904 static AssertionNode* AfterNewline(RegExpNode* on_success) { in AfterNewline()
905 return new(on_success->zone()) AssertionNode(AFTER_NEWLINE, on_success); in AfterNewline()
926 AssertionNode(AssertionType t, RegExpNode* on_success) in AssertionNode() function