Searched refs:compareIntChar (Results 1 – 1 of 1) sorted by relevance
/aosp12/art/test/567-checker-builder-intrinsics/src/ |
H A D | TestCompare.java | 294 public static int compareIntChar(int x, char y) { in compareIntChar() method in TestCompare 843 expectEquals(-1, compareIntChar(Integer.MIN_VALUE, (char)0)); in testCompareIntChar() 846 expectEquals(-1, compareIntChar(-1, (char)0)); in testCompareIntChar() 847 expectEquals(-1, compareIntChar(-1, (char)1)); in testCompareIntChar() 848 expectEquals(-1, compareIntChar(0, (char)1)); in testCompareIntChar() 850 expectEquals(0, compareIntChar(0, (char)0)); in testCompareIntChar() 851 expectEquals(0, compareIntChar(1, (char)1)); in testCompareIntChar() 853 expectEquals(1, compareIntChar(1, (char)0)); in testCompareIntChar() 854 expectEquals(1, compareIntChar(Integer.MAX_VALUE, (char)0)); in testCompareIntChar() 855 expectEquals(1, compareIntChar(Integer.MAX_VALUE, (char)1)); in testCompareIntChar() [all …]
|