Home | History | Annotate | Download | only in Frontend

Lines Matching refs:Min

166                     StringRef Text, unsigned Min, unsigned Max)
167 : Directive(DirectiveLoc, DiagnosticLoc, Text, Min, Max) { }
184 StringRef Text, unsigned Min, unsigned Max)
185 : Directive(DirectiveLoc, DiagnosticLoc, Text, Min, Max), Regex(Text) { }
401 unsigned Min = 1;
403 if (PH.Next(Min)) {
405 // A positive integer can be followed by a '+' meaning min
406 // or more, or by a '-' meaning a range from min to max.
412 if (!PH.Next(Max) || Max < Min) {
419 Max = Min;
464 Min, Max);
672 if (i >= D.Min) break;
825 unsigned Min, unsigned Max) {
827 return new RegexDirective(DirectiveLoc, DiagnosticLoc, Text, Min, Max);
828 return new StandardDirective(DirectiveLoc, DiagnosticLoc, Text, Min, Max);