Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/util/concurrent/
DCompletableFuture.java268 static final AltResult NIL = new AltResult(null); field in CompletableFuture
272 return RESULT.compareAndSet(this, null, NIL); in completeNull()
277 return (t == null) ? NIL : t; in encodeValue()
282 return RESULT.compareAndSet(this, null, (t == null) ? NIL : t); in completeValue()
332 return (x == null) ? (t == null) ? NIL : t : encodeThrowable(x); in encodeOutcome()
734 d.result = NIL; in uniAcceptNow()
796 d.result = NIL; in uniRunNow()
1488 d.result = NIL; in andTree()
1505 d.result = NIL; in andTree()
2021 return new CompletableFuture<U>((value == null) ? NIL : value); in completedFuture()
[all …]