12 references to ComputeMinLength
System.Text.RegularExpressions (12)
System\Text\RegularExpressions\RegexFindOptimizations.cs (1)
51
MinRequiredLength = root.
ComputeMinLength
();
System\Text\RegularExpressions\RegexNode.cs (11)
2291
return (int)Math.Min(int.MaxValue - 1, (long)M * Child(0).
ComputeMinLength
());
2298
int min = Child(0).
ComputeMinLength
();
2301
min = Math.Min(min, Child(i).
ComputeMinLength
());
2308
return Math.Min(Child(0).
ComputeMinLength
(), Child(1).
ComputeMinLength
());
2312
return Math.Min(Child(1).
ComputeMinLength
(), Child(2).
ComputeMinLength
());
2321
sum += Child(i).
ComputeMinLength
();
2331
return Child(0).
ComputeMinLength
();
2652
requiredLength = child.
ComputeMinLength
();
2663
requiredLength += child.
ComputeMinLength
();