Searched refs:INT_VALUES (Results 1 – 2 of 2) sorted by relevance
32 static final int[] INT_VALUES = {0, 1, 23, 456, 0x7fff_ffff, 0x8000_0000, 0xffff_ffff}; field in IntegerTest162 for (int i = 0; i < INT_VALUES.length; ++i) { in testCompareUnsigned()163 for (int j = 0; j < INT_VALUES.length; ++j) { in testCompareUnsigned()166 Integer.compareUnsigned(INT_VALUES[i], INT_VALUES[j])); in testCompareUnsigned()195 for (int value : INT_VALUES) { in testParseUnsignedInt()253 for (int value : INT_VALUES) { in testParseUnsignedIntSubstring()334 for (int val : INT_VALUES) { in testToUnsignedLong()343 for (int val : INT_VALUES) { in testToUnsignedString()
37 integralValuesTest(INT_VALUES, true) + in main()45 private static final Map<BigDecimal, Number> INT_VALUES = field in IntegralValueTests