Searched refs:cfs (Results 1 – 1 of 1) sorted by relevance
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | CompletableFuture.java | 1329 static CompletableFuture<Void> andTree(CompletableFuture<?>[] cfs, in andTree() argument 1337 if ((a = (lo == mid ? cfs[lo] : in andTree() 1338 andTree(cfs, lo, mid))) == null || in andTree() 1339 (b = (lo == hi ? a : (hi == mid+1) ? cfs[hi] : in andTree() 1340 andTree(cfs, mid+1, hi))) == null) in andTree() 1585 static CompletableFuture<Object> orTree(CompletableFuture<?>[] cfs, in orTree() argument 1591 if ((a = (lo == mid ? cfs[lo] : in orTree() 1592 orTree(cfs, lo, mid))) == null || in orTree() 1593 (b = (lo == hi ? a : (hi == mid+1) ? cfs[hi] : in orTree() 1594 orTree(cfs, mid+1, hi))) == null) in orTree() [all …]
|