Home
last modified time | relevance | path

Searched refs:h3 (Results 1 – 7 of 7) sorted by relevance

/libcore/ojluni/src/test/sun/invoke/util/
DWrapperTest.java50 MethodHandle h3 = h2.asType(MethodType.methodType(short.class)); // add 0 in testShortZeroConversion() local
51 MethodHandle h4 = h3.asType(MethodType.methodType(Object.class)); // box in testShortZeroConversion()
63 MethodHandle h3 = h2.asType(MethodType.methodType(int.class)); // add 0 in testIntZeroConversion() local
64 MethodHandle h4 = h3.asType(MethodType.methodType(Object.class)); // box in testIntZeroConversion()
76 MethodHandle h3 = h2.asType(MethodType.methodType(long.class)); // add 0 in testLongZeroConversion() local
77 MethodHandle h4 = h3.asType(MethodType.methodType(Object.class)); // box in testLongZeroConversion()
89 MethodHandle h3 = h2.asType(MethodType.methodType(byte.class)); // add 0 in testByteZeroConversion() local
90 MethodHandle h4 = h3.asType(MethodType.methodType(Object.class)); // box in testByteZeroConversion()
102 MethodHandle h3 = h2.asType(MethodType.methodType(char.class)); // add 0 in testCharacterZeroConversion() local
103 MethodHandle h4 = h3.asType(MethodType.methodType(Object.class)); // box in testCharacterZeroConversion()
/libcore/jsr166-tests/src/test/java/jsr166/
DCompletableFutureTest.java1296 final CompletableFuture<Void> h3 = m.thenRun(f, rs[3]); in testThenRun_normalCompletion() local
1303 checkCompletedNormally(h3, null); in testThenRun_normalCompletion()
1329 final CompletableFuture<Void> h3 = m.thenRun(f, rs[3]); in testThenRun_exceptionalCompletion() local
1336 checkCompletedWithWrappedException(h3, ex); in testThenRun_exceptionalCompletion()
1361 final CompletableFuture<Void> h3 = m.thenRun(f, rs[3]); in testThenRun_sourceCancelled() local
1368 checkCompletedWithWrappedCancellationException(h3); in testThenRun_sourceCancelled()
1390 final CompletableFuture<Void> h3 = m.thenRun(f, rs[3]); in testThenRun_actionFailed() local
1397 checkCompletedWithWrappedCFException(h3); in testThenRun_actionFailed()
1420 final CompletableFuture<Integer> h3 = m.applyToEither(f, f, rs[3]); in testThenApply_normalCompletion() local
1425 checkCompletedNormally(h3, inc(v1)); in testThenApply_normalCompletion()
[all …]
/libcore/ojluni/src/test/java/util/concurrent/tck/
DCompletableFutureTest.java1419 final CompletableFuture<Void> h3 = m.thenRun(f, rs[3]); in testThenRun_normalCompletion() local
1426 checkCompletedNormally(h3, null); in testThenRun_normalCompletion()
1452 final CompletableFuture<Void> h3 = m.thenRun(f, rs[3]); in testThenRun_exceptionalCompletion() local
1459 checkCompletedWithWrappedException(h3, ex); in testThenRun_exceptionalCompletion()
1484 final CompletableFuture<Void> h3 = m.thenRun(f, rs[3]); in testThenRun_sourceCancelled() local
1491 checkCompletedWithWrappedCancellationException(h3); in testThenRun_sourceCancelled()
1513 final CompletableFuture<Void> h3 = m.thenRun(f, rs[3]); in testThenRun_actionFailed() local
1520 checkCompletedWithWrappedException(h3, rs[3].ex); in testThenRun_actionFailed()
1543 final CompletableFuture<Item> h3 = m.applyToEither(f, f, rs[3]); in testThenApply_normalCompletion() local
1548 checkCompletedNormally(h3, inc(v1)); in testThenApply_normalCompletion()
[all …]
/libcore/luni/src/test/java/libcore/java/util/logging/
DOldFileHandlerTest.java144 FileHandler h3 = new FileHandler("%t/log/string"); in testFileHandler_1params() local
148 h3.publish(r); in testFileHandler_1params()
152 h3.close(); in testFileHandler_1params()
/libcore/ojluni/src/main/java/java/net/
DHttpCookie.java777 int h3 = (path!=null) ? path.hashCode() : 0; in hashCode() local
779 return h1 + h2 + h3; in hashCode()
/libcore/ojluni/src/test/java/lang/invoke/
DJavaDocExamplesTest.java297 MethodHandle h3 = guardWithTest(h0, h1, h2); in testDropArgumentsToMatch() local
298 assertEquals("xy", h3.invoke("x", "y", 1, "a", "b", "c")); in testDropArgumentsToMatch()
/libcore/ojluni/src/test/java/time/tck/java/time/chrono/
DTCKMinguoChronology.java229 ChronoLocalDateTime<MinguoDate> h3 = h2.atTime(LocalTime.NOON); in test_MinguoChrono() local
231 ChronoZonedDateTime<MinguoDate> h4 = h3.atZone(ZoneOffset.UTC); in test_MinguoChrono()