Searched refs:h0 (Results 1 – 2 of 2) sorted by relevance
/libcore/luni/src/test/java/libcore/java/lang/invoke/ |
D | MethodHandleAccessorsTest.java | 760 MethodHandle h0 = lookup.findStaticGetter(ValueHolder.class, "s_fi", int.class); in testStaticGetter() local 761 h0.invoke(); in testStaticGetter() 762 Number t = (Number)h0.invoke(); in testStaticGetter() 763 int u = (int)h0.invoke(); in testStaticGetter() 764 Integer v = (Integer)h0.invoke(); in testStaticGetter() 765 long w = (long)h0.invoke(); in testStaticGetter() 767 byte x = (byte)h0.invoke(); in testStaticGetter() 771 String y = (String)h0.invoke(); in testStaticGetter() 775 Long z = (Long)h0.invoke(); in testStaticGetter() 783 MethodHandle h0 = lookup.findGetter(ValueHolder.class, "m_fi", int.class); in testMemberGetter() local [all …]
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
D | CompletableFutureTest.java | 1281 final CompletableFuture<Void> h0 = m.thenRun(f, rs[0]); in testThenRun_normalCompletion() local 1284 checkIncomplete(h0); in testThenRun_normalCompletion() 1292 checkCompletedNormally(h0, null); in testThenRun_normalCompletion() 1314 final CompletableFuture<Void> h0 = m.thenRun(f, rs[0]); in testThenRun_exceptionalCompletion() local 1317 checkIncomplete(h0); in testThenRun_exceptionalCompletion() 1325 checkCompletedWithWrappedException(h0, ex); in testThenRun_exceptionalCompletion() 1346 final CompletableFuture<Void> h0 = m.thenRun(f, rs[0]); in testThenRun_sourceCancelled() local 1349 checkIncomplete(h0); in testThenRun_sourceCancelled() 1357 checkCompletedWithWrappedCancellationException(h0); in testThenRun_sourceCancelled() 1378 final CompletableFuture<Void> h0 = m.thenRun(f, rs[0]); in testThenRun_actionFailed() local [all …]
|