Lines Matching refs:maxInt
1418 int32_t maxInt; in parseIntegerWidthOption() local
1420 maxInt = -1; in parseIntegerWidthOption()
1423 maxInt = 0; in parseIntegerWidthOption()
1426 if (maxInt != -1 && segment.charAt(offset) == u'#') { in parseIntegerWidthOption()
1427 maxInt++; in parseIntegerWidthOption()
1441 if (maxInt != -1) { in parseIntegerWidthOption()
1442 maxInt += minInt; in parseIntegerWidthOption()
1450 if (maxInt == -1) { in parseIntegerWidthOption()
1453 macros.integerWidth = IntegerWidth::zeroFillTo(minInt).truncateAt(maxInt); in parseIntegerWidthOption()
1457 void blueprint_helpers::generateIntegerWidthOption(int32_t minInt, int32_t maxInt, UnicodeString& s… in generateIntegerWidthOption() argument
1459 if (maxInt == -1) { in generateIntegerWidthOption()
1462 appendMultiple(sb, u'#', maxInt - minInt); in generateIntegerWidthOption()