Lines Matching refs:compareIntChar
294 public static int compareIntChar(int x, char y) { in compareIntChar() method in TestCompare
843 expectEquals(-1, compareIntChar(Integer.MIN_VALUE, (char)0)); in testCompareIntChar()
844 expectEquals(-1, compareIntChar(Integer.MIN_VALUE, (char)1)); in testCompareIntChar()
845 expectEquals(-1, compareIntChar(Integer.MIN_VALUE, Character.MAX_VALUE)); in testCompareIntChar()
846 expectEquals(-1, compareIntChar(-1, (char)0)); in testCompareIntChar()
847 expectEquals(-1, compareIntChar(-1, (char)1)); in testCompareIntChar()
848 expectEquals(-1, compareIntChar(0, (char)1)); in testCompareIntChar()
850 expectEquals(0, compareIntChar(0, (char)0)); in testCompareIntChar()
851 expectEquals(0, compareIntChar(1, (char)1)); in testCompareIntChar()
853 expectEquals(1, compareIntChar(1, (char)0)); in testCompareIntChar()
854 expectEquals(1, compareIntChar(Integer.MAX_VALUE, (char)0)); in testCompareIntChar()
855 expectEquals(1, compareIntChar(Integer.MAX_VALUE, (char)1)); in testCompareIntChar()
856 expectEquals(1, compareIntChar(Integer.MAX_VALUE, (char)(Character.MAX_VALUE - 1))); in testCompareIntChar()
857 expectEquals(1, compareIntChar(Integer.MAX_VALUE, Character.MAX_VALUE)); in testCompareIntChar()
864 expectEquals(expected, compareIntChar(i, j)); in testCompareIntChar()