Home | History | Annotate | Download | only in src

Lines Matching refs:recursion_depth

804   inline int recursion_depth() { return recursion_depth_; }
1662 if (compiler->recursion_depth() >= RegExpCompiler::kMaxRecursion) {
1679 compiler->recursion_depth() <= RegExpCompiler::kMaxRecursion) {
1692 int recursion_depth,
1694 if (recursion_depth > RegExpCompiler::kMaxRecursion) return 0;
1697 recursion_depth + 1,
1703 int recursion_depth,
1705 if (recursion_depth > RegExpCompiler::kMaxRecursion) return 0;
1713 recursion_depth + 1,
1719 int recursion_depth,
1721 if (recursion_depth > RegExpCompiler::kMaxRecursion) return 0;
1723 recursion_depth + 1,
1729 int recursion_depth,
1733 if (recursion_depth > RegExpCompiler::kMaxRecursion) return answer;
1736 recursion_depth + 1,
1742 int recursion_depth,
1744 if (recursion_depth > RegExpCompiler::kMaxRecursion) return 0;
1748 return node->EatsAtLeast(still_to_find, recursion_depth + 1, not_at_start);
1765 int recursion_depth,
1768 if (recursion_depth > RegExpCompiler::kMaxRecursion) return 0;
1775 recursion_depth + 1,
1784 int recursion_depth,
1787 recursion_depth,
1794 int recursion_depth,
1797 recursion_depth,
2658 int recursion_depth = 0;
2660 if (recursion_depth++ > RegExpCompiler::kMaxRecursion) {