Searched refs:screenExecutor (Results 1 – 1 of 1) sorted by relevance
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | CompletableFuture.java | 428 static Executor screenExecutor(Executor e) { in screenExecutor() method in CompletableFuture 1981 return asyncSupplyStage(screenExecutor(executor), supplier); in supplyAsync() 2009 return asyncRunStage(screenExecutor(executor), runnable); in runAsync() 2154 return uniApplyStage(screenExecutor(executor), fn); in thenApplyAsync() 2167 return uniAcceptStage(screenExecutor(executor), action); in thenAcceptAsync() 2180 return uniRunStage(screenExecutor(executor), action); in thenRunAsync() 2198 return biApplyStage(screenExecutor(executor), other, fn); in thenCombineAsync() 2216 return biAcceptStage(screenExecutor(executor), other, action); in thenAcceptBothAsync() 2232 return biRunStage(screenExecutor(executor), other, action); in runAfterBothAsync() 2248 return orApplyStage(screenExecutor(executor), other, fn); in applyToEitherAsync() [all …]
|