Searched refs:h1 (Results 1 – 6 of 6) sorted by relevance
/libcore/luni/src/test/java/libcore/java/util/ |
D | ObjectsTest.java | 56 Hello h1 = new Hello(); in test_equals() local 59 assertFalse(Objects.equals(h1, null)); in test_equals() 60 assertFalse(Objects.equals(null, h1)); in test_equals() 61 assertFalse(Objects.equals(h1, h2)); in test_equals() 62 assertTrue(Objects.equals(h1, h1)); in test_equals()
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
D | CompletableFutureTest.java | 1282 final CompletableFuture<Void> h1 = m.runAfterBoth(f, f, rs[1]); in testThenRun_normalCompletion() local 1285 checkIncomplete(h1); in testThenRun_normalCompletion() 1293 checkCompletedNormally(h1, null); in testThenRun_normalCompletion() 1315 final CompletableFuture<Void> h1 = m.runAfterBoth(f, f, rs[1]); in testThenRun_exceptionalCompletion() local 1318 checkIncomplete(h1); in testThenRun_exceptionalCompletion() 1326 checkCompletedWithWrappedException(h1, ex); in testThenRun_exceptionalCompletion() 1347 final CompletableFuture<Void> h1 = m.runAfterBoth(f, f, rs[1]); in testThenRun_sourceCancelled() local 1350 checkIncomplete(h1); in testThenRun_sourceCancelled() 1358 checkCompletedWithWrappedCancellationException(h1); in testThenRun_sourceCancelled() 1379 final CompletableFuture<Void> h1 = m.runAfterBoth(f, f, rs[1]); in testThenRun_actionFailed() local [all …]
|
/libcore/luni/src/test/java/libcore/java/lang/ |
D | OldObjectTest.java | 42 int h1 = System.identityHashCode(o1); in test_hashCode() local 44 assertEquals(h1, o1.hashCode()); in test_hashCode() 46 assertTrue(h1 != h2); in test_hashCode()
|
/libcore/ojluni/src/main/java/java/net/ |
D | HttpCookie.java | 903 int h1 = name.toLowerCase().hashCode(); in hashCode() local 907 return h1 + h2 + h3; in hashCode()
|
/libcore/ojluni/src/main/java/sun/security/ssl/ |
D | CipherSuite.java | 248 String h1 = Integer.toString(id1, 16); in valueOf() local 250 c = new CipherSuite("Unknown 0x" + h1 + ":0x" + h2, id); in valueOf()
|
/libcore/ojluni/src/main/java/sun/net/www/protocol/http/ |
D | HttpURLConnection.java | 817 final String h1 = u1.getHost(); 820 if (h1 == null) { 824 } else if (h1.equalsIgnoreCase(h2)) { 835 InetAddress a1 = InetAddress.getByName(h1);
|