Searched refs:compareByteChar (Results 1 – 1 of 1) sorted by relevance
/art/test/567-checker-builder-intrinsics/src/ |
D | TestCompare.java | 181 public static int compareByteChar(byte x, char y) { in compareByteChar() method in TestCompare 524 expectEquals(-1, compareByteChar(Byte.MIN_VALUE, (char)0)); in testCompareByteChar() 525 expectEquals(-1, compareByteChar(Byte.MIN_VALUE, (char)1)); in testCompareByteChar() 526 expectEquals(-1, compareByteChar(Byte.MIN_VALUE, Character.MAX_VALUE)); in testCompareByteChar() 527 expectEquals(-1, compareByteChar((byte)-1, (char)0)); in testCompareByteChar() 528 expectEquals(-1, compareByteChar((byte)-1, (char)1)); in testCompareByteChar() 529 expectEquals(-1, compareByteChar((byte)0, (char)1)); in testCompareByteChar() 530 expectEquals(-1, compareByteChar(Byte.MAX_VALUE, (char)(Character.MAX_VALUE - 1))); in testCompareByteChar() 531 expectEquals(-1, compareByteChar(Byte.MAX_VALUE, Character.MAX_VALUE)); in testCompareByteChar() 533 expectEquals(0, compareByteChar((byte)0, (char)0)); in testCompareByteChar() [all …]
|