Lines Matching refs:maxInt
1355 int32_t maxInt; in parseIntegerWidthOption() local
1357 maxInt = -1; in parseIntegerWidthOption()
1360 maxInt = 0; in parseIntegerWidthOption()
1363 if (maxInt != -1 && segment.charAt(offset) == u'#') { in parseIntegerWidthOption()
1364 maxInt++; in parseIntegerWidthOption()
1378 if (maxInt != -1) { in parseIntegerWidthOption()
1379 maxInt += minInt; in parseIntegerWidthOption()
1387 if (maxInt == -1) { in parseIntegerWidthOption()
1390 macros.integerWidth = IntegerWidth::zeroFillTo(minInt).truncateAt(maxInt); in parseIntegerWidthOption()
1394 void blueprint_helpers::generateIntegerWidthOption(int32_t minInt, int32_t maxInt, UnicodeString& s… in generateIntegerWidthOption() argument
1396 if (maxInt == -1) { in generateIntegerWidthOption()
1399 appendMultiple(sb, u'#', maxInt - minInt); in generateIntegerWidthOption()