Lines Matching refs:compareIntByte

293   public static int compareIntByte(int x, byte y) {  in compareIntByte()  method in Main
802 expectEquals(-1, compareIntByte(Integer.MIN_VALUE, Byte.MIN_VALUE)); in testCompareIntByte()
803 expectEquals(-1, compareIntByte(Integer.MIN_VALUE, (byte)(Byte.MIN_VALUE + 1))); in testCompareIntByte()
804 expectEquals(-1, compareIntByte(Integer.MIN_VALUE, (byte)-1)); in testCompareIntByte()
805 expectEquals(-1, compareIntByte(Integer.MIN_VALUE, (byte)0)); in testCompareIntByte()
806 expectEquals(-1, compareIntByte(Integer.MIN_VALUE, (byte)1)); in testCompareIntByte()
807 expectEquals(-1, compareIntByte(Integer.MIN_VALUE, Byte.MAX_VALUE)); in testCompareIntByte()
808 expectEquals(-1, compareIntByte(-1, (byte)0)); in testCompareIntByte()
809 expectEquals(-1, compareIntByte(-1, (byte)1)); in testCompareIntByte()
810 expectEquals(-1, compareIntByte(0, (byte)1)); in testCompareIntByte()
812 expectEquals(0, compareIntByte(-1, (byte)-1)); in testCompareIntByte()
813 expectEquals(0, compareIntByte(0, (byte)0)); in testCompareIntByte()
814 expectEquals(0, compareIntByte(1, (byte)1)); in testCompareIntByte()
816 expectEquals(1, compareIntByte(0, (byte)-1)); in testCompareIntByte()
817 expectEquals(1, compareIntByte(1, (byte)-1)); in testCompareIntByte()
818 expectEquals(1, compareIntByte(1, (byte)0)); in testCompareIntByte()
819 expectEquals(1, compareIntByte(Integer.MAX_VALUE, Byte.MIN_VALUE)); in testCompareIntByte()
820 expectEquals(1, compareIntByte(Integer.MAX_VALUE, (byte)-1)); in testCompareIntByte()
821 expectEquals(1, compareIntByte(Integer.MAX_VALUE, (byte)0)); in testCompareIntByte()
822 expectEquals(1, compareIntByte(Integer.MAX_VALUE, (byte)1)); in testCompareIntByte()
823 expectEquals(1, compareIntByte(Integer.MAX_VALUE, (byte)(Byte.MAX_VALUE - 1))); in testCompareIntByte()
824 expectEquals(1, compareIntByte(Integer.MAX_VALUE, Byte.MAX_VALUE)); in testCompareIntByte()
831 expectEquals(expected, compareIntByte(i, j)); in testCompareIntByte()