Home
last modified time | relevance | path

Searched refs:valueIfAbsent (Results 1 – 3 of 3) sorted by relevance

/libcore/ojluni/annotations/mmodule/java/util/concurrent/
DCompletableFuture.annotated.java64 public T getNow(T valueIfAbsent) { throw new RuntimeException("Stub!"); } in getNow() argument
/libcore/ojluni/annotations/flagged_api/java/util/concurrent/
DCompletableFuture.annotated.java107 public T getNow(T valueIfAbsent) { throw new RuntimeException("Stub!"); } in getNow() argument
/libcore/ojluni/src/main/java/java/util/concurrent/
DCompletableFuture.java2108 public T getNow(T valueIfAbsent) { in getNow() argument
2110 return ((r = result) == null) ? valueIfAbsent : (T) reportJoin(r); in getNow()
2945 @Override public T getNow(T valueIfAbsent) { in getNow() argument