Lines Matching refs:maxInt
1179 int32_t maxInt; in parseIntegerWidthOption() local
1181 maxInt = -1; in parseIntegerWidthOption()
1184 maxInt = 0; in parseIntegerWidthOption()
1188 maxInt++; in parseIntegerWidthOption()
1202 if (maxInt != -1) { in parseIntegerWidthOption()
1203 maxInt += minInt; in parseIntegerWidthOption()
1211 if (maxInt == -1) { in parseIntegerWidthOption()
1214 macros.integerWidth = IntegerWidth::zeroFillTo(minInt).truncateAt(maxInt); in parseIntegerWidthOption()
1218 void blueprint_helpers::generateIntegerWidthOption(int32_t minInt, int32_t maxInt, UnicodeString& s… in generateIntegerWidthOption() argument
1220 if (maxInt == -1) { in generateIntegerWidthOption()
1223 appendMultiple(sb, u'#', maxInt - minInt); in generateIntegerWidthOption()