/libcore/jsr166-tests/src/test/java/jsr166/ |
D | EntryTest.java | 53 Map.Entry e2 = new AbstractMap.SimpleEntry(k1, v1); in testConstructor3() local 54 Map.Entry e = new AbstractMap.SimpleEntry(e2); in testConstructor3() 74 Map.Entry e2 = new AbstractMap.SimpleEntry(k1, v1); in testEquals() local 75 Map.Entry e = new AbstractMap.SimpleEntry(e2); in testEquals() 78 assertEquals(e2, e); in testEquals() 79 assertEquals(e2.hashCode(), e.hashCode()); in testEquals() 82 assertEquals(e2, s2); in testEquals() 83 assertEquals(e2.hashCode(), s2.hashCode()); in testEquals() 92 Map.Entry e2 = new AbstractMap.SimpleEntry(k1, v1); in testNotEquals() local 94 assertFalse(e2.equals(e)); in testNotEquals() [all …]
|
D | TreeSubSetTest.java | 344 Object e2 = q.lower(six); in testLower() local 345 assertEquals(five, e2); in testLower() 362 Object e2 = q.higher(zero); in testHigher() local 363 assertEquals(one, e2); in testHigher() 380 Object e2 = q.floor(six); in testFloor() local 381 assertEquals(five, e2); in testFloor() 398 Object e2 = q.ceiling(zero); in testCeiling() local 399 assertEquals(one, e2); in testCeiling() 823 Object e2 = q.lower(m6); in testDescendingLower() local 824 assertEquals(m5, e2); in testDescendingLower() [all …]
|
D | ConcurrentSkipListSubSetTest.java | 347 Object e2 = q.lower(six); in testLower() local 348 assertEquals(five, e2); in testLower() 365 Object e2 = q.higher(zero); in testHigher() local 366 assertEquals(one, e2); in testHigher() 383 Object e2 = q.floor(six); in testFloor() local 384 assertEquals(five, e2); in testFloor() 401 Object e2 = q.ceiling(zero); in testCeiling() local 402 assertEquals(one, e2); in testCeiling() 837 Object e2 = q.lower(m6); in testDescendingLower() local 838 assertEquals(m5, e2); in testDescendingLower() [all …]
|
D | TreeSubMapTest.java | 252 Map.Entry e2 = map.lowerEntry(six); 253 assertEquals(five, e2.getKey()); 270 Map.Entry e2 = map.higherEntry(zero); 271 assertEquals(one, e2.getKey()); 288 Map.Entry e2 = map.floorEntry(six); 289 assertEquals(five, e2.getKey()); 306 Map.Entry e2 = map.ceilingEntry(zero); 307 assertEquals(one, e2.getKey()); 804 Map.Entry e2 = map.lowerEntry(m6); 805 assertEquals(m5, e2.getKey()); [all …]
|
D | TreeMapTest.java | 366 Map.Entry e2 = map.lowerEntry(six); 367 assertEquals(five, e2.getKey()); 384 Map.Entry e2 = map.higherEntry(zero); 385 assertEquals(one, e2.getKey()); 402 Map.Entry e2 = map.floorEntry(six); 403 assertEquals(five, e2.getKey()); 420 Map.Entry e2 = map.ceilingEntry(zero); 421 assertEquals(one, e2.getKey()); 438 Object e2 = q.lowerKey(six); 439 assertEquals(five, e2); [all …]
|
D | ConcurrentSkipListMapTest.java | 453 Map.Entry e2 = map.lowerEntry(six); 454 assertEquals(five, e2.getKey()); 471 Map.Entry e2 = map.higherEntry(zero); 472 assertEquals(one, e2.getKey()); 489 Map.Entry e2 = map.floorEntry(six); 490 assertEquals(five, e2.getKey()); 507 Map.Entry e2 = map.ceilingEntry(zero); 508 assertEquals(one, e2.getKey()); 557 Object e2 = q.lowerKey(six); 558 assertEquals(five, e2); [all …]
|
D | ConcurrentSkipListSubMapTest.java | 365 Map.Entry e2 = map.lowerEntry(six); 366 assertEquals(five, e2.getKey()); 383 Map.Entry e2 = map.higherEntry(zero); 384 assertEquals(one, e2.getKey()); 401 Map.Entry e2 = map.floorEntry(six); 402 assertEquals(five, e2.getKey()); 419 Map.Entry e2 = map.ceilingEntry(zero); 420 assertEquals(one, e2.getKey()); 1039 Map.Entry e2 = map.lowerEntry(m6); 1040 assertEquals(m5, e2.getKey()); [all …]
|
D | TreeSetTest.java | 393 Object e2 = q.lower(six); in testLower() local 394 assertEquals(five, e2); in testLower() 411 Object e2 = q.higher(zero); in testHigher() local 412 assertEquals(one, e2); in testHigher() 429 Object e2 = q.floor(six); in testFloor() local 430 assertEquals(five, e2); in testFloor() 447 Object e2 = q.ceiling(zero); in testCeiling() local 448 assertEquals(one, e2); in testCeiling()
|
D | ConcurrentSkipListSetTest.java | 389 Object e2 = q.lower(six); in testLower() local 390 assertEquals(five, e2); in testLower() 407 Object e2 = q.higher(zero); in testHigher() local 408 assertEquals(one, e2); in testHigher() 425 Object e2 = q.floor(six); in testFloor() local 426 assertEquals(five, e2); in testFloor() 443 Object e2 = q.ceiling(zero); in testCeiling() local 444 assertEquals(one, e2); in testCeiling()
|
/libcore/ojluni/src/main/java/java/util/ |
D | DualPivotQuicksort.java | 290 int e2 = e3 - seventh; in sort() local 291 int e1 = e2 - seventh; in sort() 296 if (a[e2] < a[e1]) { int t = a[e2]; a[e2] = a[e1]; a[e1] = t; } in sort() 298 if (a[e3] < a[e2]) { int t = a[e3]; a[e3] = a[e2]; a[e2] = t; in sort() 299 if (t < a[e1]) { a[e2] = a[e1]; a[e1] = t; } in sort() 302 if (t < a[e2]) { a[e3] = a[e2]; a[e2] = t; in sort() 303 if (t < a[e1]) { a[e2] = a[e1]; a[e1] = t; } in sort() 308 if (t < a[e2]) { a[e3] = a[e2]; a[e2] = t; in sort() 309 if (t < a[e1]) { a[e2] = a[e1]; a[e1] = t; } in sort() 318 if (a[e1] != a[e2] && a[e2] != a[e3] && a[e3] != a[e4] && a[e4] != a[e5]) { in sort() [all …]
|
D | EnumSet.java | 222 public static <E extends Enum<E>> EnumSet<E> of(E e1, E e2) { in of() argument 225 result.add(e2); in of() 244 public static <E extends Enum<E>> EnumSet<E> of(E e1, E e2, E e3) { in of() argument 247 result.add(e2); in of() 268 public static <E extends Enum<E>> EnumSet<E> of(E e1, E e2, E e3, E e4) { in of() argument 271 result.add(e2); in of() 294 public static <E extends Enum<E>> EnumSet<E> of(E e1, E e2, E e3, E e4, in of() argument 299 result.add(e2); in of()
|
D | AbstractSequentialList.java | 216 Iterator<? extends E> e2 = c.iterator(); in addAll() local 217 while (e2.hasNext()) { in addAll() 218 e1.add(e2.next()); in addAll()
|
D | AbstractList.java | 519 ListIterator e2 = ((List) o).listIterator(); in equals() local 520 while (e1.hasNext() && e2.hasNext()) { in equals() 522 Object o2 = e2.next(); in equals() 526 return !(e1.hasNext() || e2.hasNext()); in equals()
|
D | Arrays.java | 4272 Object e2 = a2[i]; in deepEquals() local 4274 if (e1 == e2) in deepEquals() 4276 if (e1 == null || e2 == null) in deepEquals() 4280 boolean eq = deepEquals0(e1, e2); in deepEquals() 4288 static boolean deepEquals0(Object e1, Object e2) { in deepEquals0() argument 4290 Class<?> cl2 = e2.getClass().getComponentType(); in deepEquals0() 4296 return deepEquals ((Object[]) e1, (Object[]) e2); in deepEquals0() 4298 return equals((byte[]) e1, (byte[]) e2); in deepEquals0() 4300 return equals((short[]) e1, (short[]) e2); in deepEquals0() 4302 return equals((int[]) e1, (int[]) e2); in deepEquals0() [all …]
|
/libcore/luni/src/main/java/org/xml/sax/helpers/ |
D | XMLReaderFactory.java | 193 } catch (IllegalAccessException e2) { in loadClass() 195 " found but cannot be loaded", e2); in loadClass()
|
D | ParserAdapter.java | 86 } catch (IllegalAccessException e2) { in ParserAdapter() 90 " found but cannot be loaded", e2); in ParserAdapter()
|
/libcore/ojluni/src/main/java/java/util/stream/ |
D | Streams.java | 856 catch (Throwable e2) { in composeWithExceptions() 858 e1.addSuppressed(e2); in composeWithExceptions() 885 catch (Throwable e2) { 887 e1.addSuppressed(e2);
|
/libcore/ojluni/src/main/java/sun/security/ssl/ |
D | BaseSSLSocketImpl.java | 255 } catch (IOException e2) { in finalize()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/prefs/ |
D | MockAbstractPreferences.java | 222 } catch (BackingStoreException e2) { in protectedAbstractMethod()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/ |
D | ZipOutputStreamTest.java | 266 } catch (IOException e2) { in test_write$BII_2()
|
/libcore/ojluni/src/main/java/sun/net/www/protocol/gopher/ |
D | GopherClient.java | 333 } catch (IOException e2) { in run()
|
/libcore/ojluni/src/main/java/sun/security/provider/certpath/ |
D | RevocationChecker.java | 423 CertPathValidatorException e2 = new CertPathValidatorException( 426 softFailExceptions.addFirst(e2);
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
D | SerializationStressTest.java | 644 } catch (ClassNotFoundException e2) { in test_resolveClass() 645 fail("ClassNotFoundException : " + e2.getMessage()); in test_resolveClass()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
D | FormatterTest.java | 269 } catch (NullPointerException e2) { in test_ConstructorLjava_lang_StringLjava_lang_String() 315 } catch (NullPointerException e2) { in test_ConstructorLjava_lang_StringLjava_lang_StringLjava_util_Locale() 415 } catch (NullPointerException e2) { in test_ConstructorLjava_io_FileLjava_lang_String() 456 } catch (NullPointerException e2) { in test_ConstructorLjava_io_FileLjava_lang_StringLjava_util_Locale() 546 } catch (NullPointerException e2) { in test_ConstructorLjava_io_OutputStreamLjava_lang_String() 588 } catch (NullPointerException e2) { in test_ConstructorLjava_io_OutputStreamLjava_lang_StringLjava_util_Locale()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/ |
D | URITest.java | 275 } catch (URISyntaxException e2) { in test_URI_String() 276 assertEquals("TestC, Wrong URISyntaxException index, ", 0, e2 in test_URI_String()
|