Searched refs:AssertionNode (Results 1 – 3 of 3) sorted by relevance
/external/v8/src/regexp/ |
D | jsregexp.h | 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() [all …]
|
D | jsregexp.cc | 2280 int AssertionNode::EatsAtLeast(int still_to_find, in EatsAtLeast() 2296 void AssertionNode::FillInBMInfo(Isolate* isolate, int offset, int budget, in FillInBMInfo() 3030 void AssertionNode::EmitBoundaryCheck(RegExpCompiler* compiler, Trace* trace) { in EmitBoundaryCheck() 3055 bool at_boundary = (assertion_type_ == AssertionNode::AT_BOUNDARY); in EmitBoundaryCheck() 3082 void AssertionNode::BacktrackIfPrevious( in BacktrackIfPrevious() 3085 AssertionNode::IfPrevious backtrack_if_previous) { in BacktrackIfPrevious() 3114 void AssertionNode::GetQuickCheckDetails(QuickCheckDetails* details, in GetQuickCheckDetails() 3129 void AssertionNode::Emit(RegExpCompiler* compiler, Trace* trace) { in Emit() 4596 void DotPrinter::VisitAssertion(AssertionNode* that) { in VisitAssertion() 4599 case AssertionNode::AT_END: in VisitAssertion() [all …]
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/testing/ |
D | perf_report_output.txt | 2244 0.08^2505118^HTMLParserThrea^chrome ^[.] v8::internal::AssertionNode::Emit(v8::intern… 2246 … --- v8::internal::AssertionNode::Emit(v8::internal::RegExpCompiler*, v8::internal::Trace*)
|