Lines Matching refs:compareCharInt
260 public static int compareCharInt(char x, int y) { in compareCharInt() method in TestCompare
743 expectEquals(-1, compareCharInt((char)0, 1)); in testCompareCharInt()
744 expectEquals(-1, compareCharInt((char)0, Integer.MAX_VALUE)); in testCompareCharInt()
745 expectEquals(-1, compareCharInt(Character.MAX_VALUE, Integer.MAX_VALUE - 1)); in testCompareCharInt()
746 expectEquals(-1, compareCharInt(Character.MAX_VALUE, Integer.MAX_VALUE)); in testCompareCharInt()
748 expectEquals(0, compareCharInt((char)0, 0)); in testCompareCharInt()
749 expectEquals(0, compareCharInt((char)1, 1)); in testCompareCharInt()
751 expectEquals(1, compareCharInt((char)0, Integer.MIN_VALUE)); in testCompareCharInt()
752 expectEquals(1, compareCharInt((char)0, Integer.MIN_VALUE + 1)); in testCompareCharInt()
753 expectEquals(1, compareCharInt((char)0, -1)); in testCompareCharInt()
754 expectEquals(1, compareCharInt((char)1, -1)); in testCompareCharInt()
755 expectEquals(1, compareCharInt((char)1, 0)); in testCompareCharInt()
756 expectEquals(1, compareCharInt(Character.MAX_VALUE, Integer.MIN_VALUE)); in testCompareCharInt()
757 expectEquals(1, compareCharInt(Character.MAX_VALUE, -1)); in testCompareCharInt()
758 expectEquals(1, compareCharInt(Character.MAX_VALUE, 0)); in testCompareCharInt()
759 expectEquals(1, compareCharInt(Character.MAX_VALUE, 1)); in testCompareCharInt()
766 expectEquals(expected, compareCharInt(i, j)); in testCompareCharInt()