Lines Matching refs:y

52   private static int compareBooleans(boolean x, boolean y) {  in compareBooleans()  argument
53 return Integer.compare((x ? 1 : 0), (y ? 1 : 0)); in compareBooleans()
89 private static int compareBooleans2(boolean x, boolean y) { in compareBooleans2() argument
99 if (y) { in compareBooleans2()
114 private static int compareBytes(byte x, byte y) { in compareBytes() argument
115 return Integer.compare(x, y); in compareBytes()
125 private static int compareShorts(short x, short y) { in compareShorts() argument
126 return Integer.compare(x, y); in compareShorts()
136 private static int compareChars(char x, char y) { in compareChars() argument
137 return Integer.compare(x, y); in compareChars()
147 private static int compareInts(int x, int y) { in compareInts() argument
148 return Integer.compare(x, y); in compareInts()
158 private static int compareLongs(long x, long y) { in compareLongs() argument
159 return Long.compare(x, y); in compareLongs()
170 public static int compareByteShort(byte x, short y) { in compareByteShort() argument
171 return Integer.compare(x, y); in compareByteShort()
181 public static int compareByteChar(byte x, char y) { in compareByteChar() argument
182 return Integer.compare(x, y); in compareByteChar()
192 public static int compareByteInt(byte x, int y) { in compareByteInt() argument
193 return Integer.compare(x, y); in compareByteInt()
204 public static int compareShortByte(short x, byte y) { in compareShortByte() argument
205 return Integer.compare(x, y); in compareShortByte()
215 public static int compareShortChar(short x, char y) { in compareShortChar() argument
216 return Integer.compare(x, y); in compareShortChar()
226 public static int compareShortInt(short x, int y) { in compareShortInt() argument
227 return Integer.compare(x, y); in compareShortInt()
238 public static int compareCharByte(char x, byte y) { in compareCharByte() argument
239 return Integer.compare(x, y); in compareCharByte()
249 public static int compareCharShort(char x, short y) { in compareCharShort() argument
250 return Integer.compare(x, y); in compareCharShort()
260 public static int compareCharInt(char x, int y) { in compareCharInt() argument
261 return Integer.compare(x, y); in compareCharInt()
272 public static int compareIntByte(int x, byte y) { in compareIntByte() argument
273 return Integer.compare(x, y); in compareIntByte()
283 public static int compareIntShort(int x, short y) { in compareIntShort() argument
284 return Integer.compare(x, y); in compareIntShort()
294 public static int compareIntChar(int x, char y) { in compareIntChar() argument
295 return Integer.compare(x, y); in compareIntChar()