Lines Matching refs:compareShortInt
231 public static int compareShortInt(short x, int y) { in compareShortInt() method in Main
678 expectEquals(-1, compareShortInt(Short.MIN_VALUE, -1)); in testCompareShortInt()
679 expectEquals(-1, compareShortInt(Short.MIN_VALUE, 0)); in testCompareShortInt()
680 expectEquals(-1, compareShortInt(Short.MIN_VALUE, 1)); in testCompareShortInt()
681 expectEquals(-1, compareShortInt(Short.MIN_VALUE, Integer.MAX_VALUE)); in testCompareShortInt()
682 expectEquals(-1, compareShortInt((short)-1, 0)); in testCompareShortInt()
683 expectEquals(-1, compareShortInt((short)-1, 1)); in testCompareShortInt()
684 expectEquals(-1, compareShortInt((short)0, 1)); in testCompareShortInt()
685 expectEquals(-1, compareShortInt(Short.MAX_VALUE, Integer.MAX_VALUE - 1)); in testCompareShortInt()
686 expectEquals(-1, compareShortInt(Short.MAX_VALUE, Integer.MAX_VALUE)); in testCompareShortInt()
688 expectEquals(0, compareShortInt((short)-1, -1)); in testCompareShortInt()
689 expectEquals(0, compareShortInt((short)0, 0)); in testCompareShortInt()
690 expectEquals(0, compareShortInt((short)1, 1)); in testCompareShortInt()
692 expectEquals(1, compareShortInt(Short.MIN_VALUE, Integer.MIN_VALUE)); in testCompareShortInt()
693 expectEquals(1, compareShortInt(Short.MIN_VALUE, Integer.MIN_VALUE + 1)); in testCompareShortInt()
694 expectEquals(1, compareShortInt((short)0, -1)); in testCompareShortInt()
695 expectEquals(1, compareShortInt((short)1, -1)); in testCompareShortInt()
696 expectEquals(1, compareShortInt((short)1, 0)); in testCompareShortInt()
697 expectEquals(1, compareShortInt(Short.MAX_VALUE, Integer.MIN_VALUE)); in testCompareShortInt()
698 expectEquals(1, compareShortInt(Short.MAX_VALUE, -1)); in testCompareShortInt()
699 expectEquals(1, compareShortInt(Short.MAX_VALUE, 0)); in testCompareShortInt()
700 expectEquals(1, compareShortInt(Short.MAX_VALUE, 1)); in testCompareShortInt()
707 expectEquals(expected, compareShortInt(i, j)); in testCompareShortInt()