Lines Matching defs:tree
26 static bool Check(RegExpTree* tree, RegExpFlags flags, int capture_count) {
29 tree->Accept(&visitor, nullptr);
82 el.tree()->Accept(this, nullptr);
177 bool ExperimentalRegExpCompiler::CanBeHandled(RegExpTree* tree,
180 return CanBeHandledVisitor::Check(tree, flags, capture_count);
217 // the `tree` size we're going to compile?
298 static ZoneList<RegExpInstruction> Compile(RegExpTree* tree,
302 if (!IsSticky(flags) && !tree->IsAnchoredAtStart()) {
311 tree->Accept(&compiler, nullptr);
618 text_el.tree()->Accept(this, nullptr);
631 RegExpTree* tree, RegExpFlags flags, Zone* zone) {
632 return CompileVisitor::Compile(tree, flags, zone);