Searched refs:screenExecutor (Results 1 – 1 of 1) sorted by relevance
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | CompletableFuture.java | 414 static Executor screenExecutor(Executor e) { in screenExecutor() method in CompletableFuture 1856 return asyncSupplyStage(screenExecutor(executor), supplier); in supplyAsync() 1884 return asyncRunStage(screenExecutor(executor), runnable); in runAsync() 2019 return uniApplyStage(screenExecutor(executor), fn); in thenApplyAsync() 2032 return uniAcceptStage(screenExecutor(executor), action); in thenAcceptAsync() 2045 return uniRunStage(screenExecutor(executor), action); in thenRunAsync() 2063 return biApplyStage(screenExecutor(executor), other, fn); in thenCombineAsync() 2081 return biAcceptStage(screenExecutor(executor), other, action); in thenAcceptBothAsync() 2097 return biRunStage(screenExecutor(executor), other, action); in runAfterBothAsync() 2113 return orApplyStage(screenExecutor(executor), other, fn); in applyToEitherAsync() [all …]
|