Searched refs:compareCharShort (Results 1 – 1 of 1) sorted by relevance
/art/test/567-checker-compare/src/ |
D | Main.java | 262 public static int compareCharShort(char x, short y) { in compareCharShort() method in Main 743 expectEquals(-1, compareCharShort((char)0, (short)1)); in testCompareCharShort() 744 expectEquals(-1, compareCharShort((char)0, Short.MAX_VALUE)); in testCompareCharShort() 746 expectEquals(0, compareCharShort((char)0, (short)0)); in testCompareCharShort() 747 expectEquals(0, compareCharShort((char)1, (short)1)); in testCompareCharShort() 749 expectEquals(1, compareCharShort((char)0, Short.MIN_VALUE)); in testCompareCharShort() 750 expectEquals(1, compareCharShort((char)0, (short)(Short.MIN_VALUE + 1))); in testCompareCharShort() 751 expectEquals(1, compareCharShort((char)0, (short)-1)); in testCompareCharShort() 752 expectEquals(1, compareCharShort((char)1, (short)-1)); in testCompareCharShort() 753 expectEquals(1, compareCharShort((char)1, (short)0)); in testCompareCharShort() [all …]
|