Home
last modified time | relevance | path

Searched refs:checkCompletedNormally (Results 1 – 8 of 8) sorted by relevance

/libcore/jsr166-tests/src/test/java/jsr166/
DForkJoinTaskTest.java92 <T> void checkCompletedNormally(ForkJoinTask<T> a) { in checkCompletedNormally() method in ForkJoinTaskTest
93 checkCompletedNormally(a, null); in checkCompletedNormally()
96 <T> void checkCompletedNormally(ForkJoinTask<T> a, T expected) { in checkCompletedNormally() method in ForkJoinTaskTest
399 checkCompletedNormally(f);
415 checkCompletedNormally(f);
430 checkCompletedNormally(f);
445 checkCompletedNormally(f);
460 checkCompletedNormally(f);
491 checkCompletedNormally(f);
508 checkCompletedNormally(f);
[all …]
DRecursiveTaskTest.java54 checkCompletedNormally(a, result); in testInvokeOnPool()
90 <T> void checkCompletedNormally(RecursiveTask<T> a, T expected) { in checkCompletedNormally() method in RecursiveTaskTest
115 checkCompletedNormally(a, r); in checkCompletesNormally()
122 void checkCompletedNormally(RecursiveTask<Integer> a, int expected) { in checkCompletedNormally() method in RecursiveTaskTest
125 checkCompletedNormally(a, r); in checkCompletedNormally()
239 checkCompletedNormally(f, r); in testInvoke()
255 checkCompletedNormally(f, 21); in testQuietlyInvoke()
271 checkCompletedNormally(f, r); in testForkJoin()
287 checkCompletedNormally(f, r); in testForkGet()
303 checkCompletedNormally(f, r); in testForkTimedGet()
[all …]
DRecursiveActionTest.java58 checkCompletedNormally(a); in testInvokeOnPool()
93 void checkCompletedNormally(RecursiveAction a) { in checkCompletedNormally() method in RecursiveActionTest
222 checkCompletedNormally(f); in testInvoke()
238 checkCompletedNormally(f); in testQuietlyInvoke()
253 checkCompletedNormally(f); in testForkJoin()
274 checkCompletedNormally(f); in testJoinIgnoresInterrupts()
310 checkCompletedNormally(f); in testJoinIgnoresInterrupts()
376 checkCompletedNormally(f); in testJoinIgnoresInterruptsOutsideForkJoinPool()
408 checkCompletedNormally(f); in testJoinIgnoresInterruptsOutsideForkJoinPool()
448 checkCompletedNormally(f); in testForkGet()
[all …]
DCountedCompleterTest.java90 void checkCompletedNormally(CountedCompleter<?> a) { in checkCompletedNormally() method in CountedCompleterTest
265 checkCompletedNormally(this);
444 checkCompletedNormally(a);
467 checkCompletedNormally(a);
502 checkCompletedNormally(a);
634 checkCompletedNormally(f); in testInvoke()
650 checkCompletedNormally(f); in testQuietlyInvoke()
665 checkCompletedNormally(f); in testForkJoin()
680 checkCompletedNormally(f); in testForkGet()
695 checkCompletedNormally(f); in testForkTimedGet()
[all …]
DCompletableFutureTest.java79 <T> void checkCompletedNormally(CompletableFuture<T> f, T value) { in checkCompletedNormally() method in CompletableFutureTest
228 checkCompletedNormally(f, v1);
265 checkCompletedNormally(f, one);
267 checkCompletedNormally(f, three);
269 checkCompletedNormally(f, two);
272 checkCompletedNormally(f, three);
274 checkCompletedNormally(f, null);
278 checkCompletedNormally(f, four);
306 checkCompletedNormally(f, v1);
331 checkCompletedNormally(g, null);
[all …]
DForkJoinPool8Test.java70 checkCompletedNormally(a); in checkInvoke()
104 void checkCompletedNormally(ForkJoinTask a) { in checkCompletedNormally() method in ForkJoinPool8Test
233 checkCompletedNormally(f); in testInvoke()
249 checkCompletedNormally(f); in testQuietlyInvoke()
264 checkCompletedNormally(f); in testForkJoin()
285 checkCompletedNormally(f); in testJoinIgnoresInterrupts()
321 checkCompletedNormally(f); in testJoinIgnoresInterrupts()
356 checkCompletedNormally(f); in testForkGet()
371 checkCompletedNormally(f); in testForkTimedGet()
402 checkCompletedNormally(f); in testForkQuietlyJoin()
[all …]
DForkJoinTask8Test.java117 <T> void checkCompletedNormally(ForkJoinTask<T> a) { in checkCompletedNormally() method in ForkJoinTask8Test
118 checkCompletedNormally(a, null); in checkCompletedNormally()
121 <T> void checkCompletedNormally(ForkJoinTask<T> a, T expected) { in checkCompletedNormally() method in ForkJoinTask8Test
339 public void checkCompletedNormally() {
341 ForkJoinTask8Test.this.checkCompletedNormally(this);
393 f.checkCompletedNormally();
414 f.checkCompletedNormally();
434 f.checkCompletedNormally();
454 f.checkCompletedNormally();
474 f.checkCompletedNormally();
[all …]
DFutureTaskTest.java110 <T> void checkCompletedNormally(Future<T> f, T expected) { in checkCompletedNormally() method in FutureTaskTest
263 checkCompletedNormally(task, Boolean.TRUE); in testIsDone()
313 checkCompletedNormally(task, one); in testSet()
393 checkCompletedNormally(task, Boolean.TRUE); in testCancelAfterRun()
408 checkCompletedNormally(task, Boolean.TRUE); in testCancelAfterRun2()
572 checkCompletedNormally(task, two); in testGetRun()
579 checkCompletedNormally(task, two); in testGetRun()
615 checkCompletedNormally(task, two); in testGetSet()
838 checkCompletedNormally(future, null); in testGet_NegativeInfinityTimeout()