Searched refs:AssertionNode (Results 1 – 2 of 2) sorted by relevance
886 class AssertionNode: public SeqRegExpNode {900 static AssertionNode* AtEnd(RegExpNode* on_success) { in AtEnd()901 return new AssertionNode(AT_END, on_success); in AtEnd()903 static AssertionNode* AtStart(RegExpNode* on_success) { in AtStart()904 return new AssertionNode(AT_START, on_success); in AtStart()906 static AssertionNode* AtBoundary(RegExpNode* on_success) { in AtBoundary()907 return new AssertionNode(AT_BOUNDARY, on_success); in AtBoundary()909 static AssertionNode* AtNonBoundary(RegExpNode* on_success) { in AtNonBoundary()910 return new AssertionNode(AT_NON_BOUNDARY, on_success); in AtNonBoundary()912 static AssertionNode* AfterNewline(RegExpNode* on_success) { in AfterNewline()[all …]
1702 int AssertionNode::EatsAtLeast(int still_to_find, in EatsAtLeast()2239 static void EmitHalfBoundaryCheck(AssertionNode::AssertionNodeType type, in EmitHalfBoundaryCheck()2248 bool expect_word_character = (type == AssertionNode::AFTER_WORD_CHARACTER); in EmitHalfBoundaryCheck()2278 static void EmitBoundaryCheck(AssertionNode::AssertionNodeType type, in EmitBoundaryCheck()2299 if (type == AssertionNode::AT_BOUNDARY) { in EmitBoundaryCheck()2335 bool fall_through_on_word = (type == AssertionNode::AT_NON_BOUNDARY); in EmitBoundaryCheck()2344 void AssertionNode::GetQuickCheckDetails(QuickCheckDetails* details, in GetQuickCheckDetails()2359 void AssertionNode::Emit(RegExpCompiler* compiler, Trace* trace) { in Emit()3455 void DotPrinter::VisitAssertion(AssertionNode* that) { in VisitAssertion()3458 case AssertionNode::AT_END: in VisitAssertion()[all …]