Lines Matching refs:Integer

37     if (Integer.compare(x, 0) < 0) {  in $opt$noinline$testReplaceInputWithItself()
55 return Integer.compare((x ? 1 : 0), (y ? 1 : 0)); in compareBooleans()
61 return (Integer) m.invoke(null, x, y); in compareBooleansSmali()
76 return Integer.compare(x, y); in compareBytes()
91 return Integer.compare(x, y); in compareShorts()
106 return Integer.compare(x, y); in compareChars()
121 return Integer.compare(x, y); in compareInts()
152 return Integer.compare(x, y); in compareByteShort()
167 return Integer.compare(x, y); in compareByteChar()
182 return Integer.compare(x, y); in compareByteInt()
198 return Integer.compare(x, y); in compareShortByte()
213 return Integer.compare(x, y); in compareShortChar()
228 return Integer.compare(x, y); in compareShortInt()
244 return Integer.compare(x, y); in compareCharByte()
259 return Integer.compare(x, y); in compareCharShort()
274 return Integer.compare(x, y); in compareCharInt()
290 return Integer.compare(x, y); in compareIntByte()
305 return Integer.compare(x, y); in compareIntShort()
320 return Integer.compare(x, y); in compareIntChar()
431 expectEquals(-1, compareInts(Integer.MIN_VALUE, Integer.MIN_VALUE + 1)); in testCompareInts()
432 expectEquals(-1, compareInts(Integer.MIN_VALUE, -1)); in testCompareInts()
433 expectEquals(-1, compareInts(Integer.MIN_VALUE, 0)); in testCompareInts()
434 expectEquals(-1, compareInts(Integer.MIN_VALUE, 1)); in testCompareInts()
435 expectEquals(-1, compareInts(Integer.MIN_VALUE, Integer.MAX_VALUE)); in testCompareInts()
440 expectEquals(0, compareInts(Integer.MIN_VALUE, Integer.MIN_VALUE)); in testCompareInts()
444 expectEquals(0, compareInts(Integer.MAX_VALUE, Integer.MAX_VALUE)); in testCompareInts()
449 expectEquals(1, compareInts(Integer.MAX_VALUE, Integer.MIN_VALUE)); in testCompareInts()
450 expectEquals(1, compareInts(Integer.MAX_VALUE, -1)); in testCompareInts()
451 expectEquals(1, compareInts(Integer.MAX_VALUE, 0)); in testCompareInts()
452 expectEquals(1, compareInts(Integer.MAX_VALUE, 1)); in testCompareInts()
453 expectEquals(1, compareInts(Integer.MAX_VALUE, Integer.MAX_VALUE - 1)); in testCompareInts()
579 expectEquals(-1, compareByteInt(Byte.MIN_VALUE, Integer.MAX_VALUE)); in testCompareByteInt()
583 expectEquals(-1, compareByteInt(Byte.MAX_VALUE, Integer.MAX_VALUE - 1)); in testCompareByteInt()
584 expectEquals(-1, compareByteInt(Byte.MAX_VALUE, Integer.MAX_VALUE)); in testCompareByteInt()
590 expectEquals(1, compareByteInt(Byte.MIN_VALUE, Integer.MIN_VALUE)); in testCompareByteInt()
591 expectEquals(1, compareByteInt(Byte.MIN_VALUE, Integer.MIN_VALUE + 1)); in testCompareByteInt()
595 expectEquals(1, compareByteInt(Byte.MAX_VALUE, Integer.MIN_VALUE)); in testCompareByteInt()
677 expectEquals(-1, compareShortInt(Short.MIN_VALUE, Integer.MAX_VALUE)); in testCompareShortInt()
681 expectEquals(-1, compareShortInt(Short.MAX_VALUE, Integer.MAX_VALUE - 1)); in testCompareShortInt()
682 expectEquals(-1, compareShortInt(Short.MAX_VALUE, Integer.MAX_VALUE)); in testCompareShortInt()
688 expectEquals(1, compareShortInt(Short.MIN_VALUE, Integer.MIN_VALUE)); in testCompareShortInt()
689 expectEquals(1, compareShortInt(Short.MIN_VALUE, Integer.MIN_VALUE + 1)); in testCompareShortInt()
693 expectEquals(1, compareShortInt(Short.MAX_VALUE, Integer.MIN_VALUE)); in testCompareShortInt()
769 expectEquals(-1, compareCharInt((char)0, Integer.MAX_VALUE)); in testCompareCharInt()
770 expectEquals(-1, compareCharInt(Character.MAX_VALUE, Integer.MAX_VALUE - 1)); in testCompareCharInt()
771 expectEquals(-1, compareCharInt(Character.MAX_VALUE, Integer.MAX_VALUE)); in testCompareCharInt()
776 expectEquals(1, compareCharInt((char)0, Integer.MIN_VALUE)); in testCompareCharInt()
777 expectEquals(1, compareCharInt((char)0, Integer.MIN_VALUE + 1)); in testCompareCharInt()
781 expectEquals(1, compareCharInt(Character.MAX_VALUE, Integer.MIN_VALUE)); in testCompareCharInt()
798 expectEquals(-1, compareIntByte(Integer.MIN_VALUE, Byte.MIN_VALUE)); in testCompareIntByte()
799 expectEquals(-1, compareIntByte(Integer.MIN_VALUE, (byte)(Byte.MIN_VALUE + 1))); in testCompareIntByte()
800 expectEquals(-1, compareIntByte(Integer.MIN_VALUE, (byte)-1)); in testCompareIntByte()
801 expectEquals(-1, compareIntByte(Integer.MIN_VALUE, (byte)0)); in testCompareIntByte()
802 expectEquals(-1, compareIntByte(Integer.MIN_VALUE, (byte)1)); in testCompareIntByte()
803 expectEquals(-1, compareIntByte(Integer.MIN_VALUE, Byte.MAX_VALUE)); in testCompareIntByte()
815 expectEquals(1, compareIntByte(Integer.MAX_VALUE, Byte.MIN_VALUE)); in testCompareIntByte()
816 expectEquals(1, compareIntByte(Integer.MAX_VALUE, (byte)-1)); in testCompareIntByte()
817 expectEquals(1, compareIntByte(Integer.MAX_VALUE, (byte)0)); in testCompareIntByte()
818 expectEquals(1, compareIntByte(Integer.MAX_VALUE, (byte)1)); in testCompareIntByte()
819 expectEquals(1, compareIntByte(Integer.MAX_VALUE, (byte)(Byte.MAX_VALUE - 1))); in testCompareIntByte()
820 expectEquals(1, compareIntByte(Integer.MAX_VALUE, Byte.MAX_VALUE)); in testCompareIntByte()
833 expectEquals(-1, compareIntShort(Integer.MIN_VALUE, Short.MIN_VALUE)); in testCompareIntShort()
834 expectEquals(-1, compareIntShort(Integer.MIN_VALUE, (short)(Short.MIN_VALUE + 1))); in testCompareIntShort()
835 expectEquals(-1, compareIntShort(Integer.MIN_VALUE, (short)-1)); in testCompareIntShort()
836 expectEquals(-1, compareIntShort(Integer.MIN_VALUE, (short)0)); in testCompareIntShort()
837 expectEquals(-1, compareIntShort(Integer.MIN_VALUE, (short)1)); in testCompareIntShort()
838 expectEquals(-1, compareIntShort(Integer.MIN_VALUE, Short.MAX_VALUE)); in testCompareIntShort()
850 expectEquals(1, compareIntShort(Integer.MAX_VALUE, Short.MIN_VALUE)); in testCompareIntShort()
851 expectEquals(1, compareIntShort(Integer.MAX_VALUE, (short)-1)); in testCompareIntShort()
852 expectEquals(1, compareIntShort(Integer.MAX_VALUE, (short)0)); in testCompareIntShort()
853 expectEquals(1, compareIntShort(Integer.MAX_VALUE, (short)1)); in testCompareIntShort()
854 expectEquals(1, compareIntShort(Integer.MAX_VALUE, (short)(Short.MAX_VALUE - 1))); in testCompareIntShort()
855 expectEquals(1, compareIntShort(Integer.MAX_VALUE, Short.MAX_VALUE)); in testCompareIntShort()
868 expectEquals(-1, compareIntChar(Integer.MIN_VALUE, (char)0)); in testCompareIntChar()
869 expectEquals(-1, compareIntChar(Integer.MIN_VALUE, (char)1)); in testCompareIntChar()
870 expectEquals(-1, compareIntChar(Integer.MIN_VALUE, Character.MAX_VALUE)); in testCompareIntChar()
879 expectEquals(1, compareIntChar(Integer.MAX_VALUE, (char)0)); in testCompareIntChar()
880 expectEquals(1, compareIntChar(Integer.MAX_VALUE, (char)1)); in testCompareIntChar()
881 expectEquals(1, compareIntChar(Integer.MAX_VALUE, (char)(Character.MAX_VALUE - 1))); in testCompareIntChar()
882 expectEquals(1, compareIntChar(Integer.MAX_VALUE, Character.MAX_VALUE)); in testCompareIntChar()