Lines Matching defs:e2

953      * <i>mutually comparable</i> (that is, {@code e1.compareTo(e2)} must
955 * and {@code e2} in the array).
1005 * comparable</i> (that is, {@code e1.compareTo(e2)} must not throw a
1007 * {@code e2} in the array).
1059 * {@code c.compare(e1, e2)} must not throw a {@code ClassCastException}
1060 * for any elements {@code e1} and {@code e2} in the array).
1111 * {@code c.compare(e1, e2)} must not throw a {@code ClassCastException}
1112 * for any elements {@code e1} and {@code e2} in the range).
1218 * <i>mutually comparable</i> (that is, {@code e1.compareTo(e2)} must
1220 * and {@code e2} in the array).
1277 * comparable</i> (that is, {@code e1.compareTo(e2)} must not throw a
1279 * {@code e2} in the array).
1405 * {@code c.compare(e1, e2)} must not throw a {@code ClassCastException}
1406 * for any elements {@code e1} and {@code e2} in the array).
1470 * {@code c.compare(e1, e2)} must not throw a {@code ClassCastException}
1471 * for any elements {@code e1} and {@code e2} in the range).
2832 * and <tt>e2</tt> are considered <i>equal</i> if <tt>(e1==null ? e2==null
2833 * : e1.equals(e2))</tt>. In other words, the two arrays are equal if
4237 * <p>Two possibly <tt>null</tt> elements <tt>e1</tt> and <tt>e2</tt> are
4240 * <li> <tt>e1</tt> and <tt>e2</tt> are both arrays of object reference
4241 * types, and <tt>Arrays.deepEquals(e1, e2) would return true</tt>
4242 * <li> <tt>e1</tt> and <tt>e2</tt> are arrays of the same primitive
4244 * <tt>Arrays.equals(e1, e2)</tt> would return true.
4245 * <li> <tt>e1 == e2</tt>
4246 * <li> <tt>e1.equals(e2)</tt> would return true.
4272 Object e2 = a2[i];
4274 if (e1 == e2)
4276 if (e1 == null || e2 == null)
4280 boolean eq = deepEquals0(e1, e2);
4288 static boolean deepEquals0(Object e1, Object e2) {
4290 Class<?> cl2 = e2.getClass().getComponentType();
4296 return deepEquals ((Object[]) e1, (Object[]) e2);
4298 return equals((byte[]) e1, (byte[]) e2);
4300 return equals((short[]) e1, (short[]) e2);
4302 return equals((int[]) e1, (int[]) e2);
4304 return equals((long[]) e1, (long[]) e2);
4306 return equals((char[]) e1, (char[]) e2);
4308 return equals((float[]) e1, (float[]) e2);
4310 return equals((double[]) e1, (double[]) e2);
4312 return equals((boolean[]) e1, (boolean[]) e2);
4314 return e1.equals(e2);