Searched refs:AssertionNode (Results 1 – 2 of 2) sorted by relevance
/external/v8/src/regexp/ |
D | jsregexp.h | 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() [all …]
|
D | jsregexp.cc | 2244 int AssertionNode::EatsAtLeast(int still_to_find, in EatsAtLeast() 2260 void AssertionNode::FillInBMInfo(Isolate* isolate, int offset, int budget, in FillInBMInfo() 2982 void AssertionNode::EmitBoundaryCheck(RegExpCompiler* compiler, Trace* trace) { in EmitBoundaryCheck() 3007 bool at_boundary = (assertion_type_ == AssertionNode::AT_BOUNDARY); in EmitBoundaryCheck() 3034 void AssertionNode::BacktrackIfPrevious( in BacktrackIfPrevious() 3037 AssertionNode::IfPrevious backtrack_if_previous) { in BacktrackIfPrevious() 3066 void AssertionNode::GetQuickCheckDetails(QuickCheckDetails* details, in GetQuickCheckDetails() 3081 void AssertionNode::Emit(RegExpCompiler* compiler, Trace* trace) { in Emit() 4586 void DotPrinter::VisitAssertion(AssertionNode* that) { in VisitAssertion() 4589 case AssertionNode::AT_END: in VisitAssertion() [all …]
|