12 references to ComputeMinLength
System.Text.RegularExpressions (12)
System\Text\RegularExpressions\RegexFindOptimizations.cs (1)
21MinRequiredLength = root.ComputeMinLength();
System\Text\RegularExpressions\RegexNode.cs (11)
2284return (int)Math.Min(int.MaxValue - 1, (long)M * Child(0).ComputeMinLength()); 2291int min = Child(0).ComputeMinLength(); 2294min = Math.Min(min, Child(i).ComputeMinLength()); 2301return Math.Min(Child(0).ComputeMinLength(), Child(1).ComputeMinLength()); 2305return Math.Min(Child(1).ComputeMinLength(), Child(2).ComputeMinLength()); 2314sum += Child(i).ComputeMinLength(); 2324return Child(0).ComputeMinLength(); 2645requiredLength = child.ComputeMinLength(); 2656requiredLength += child.ComputeMinLength();