HomeSort by relevance Sort by last modified time
    Searched refs:AltResult (Results 1 - 2 of 2) sorted by null

  /libcore/ojluni/src/main/java/java/util/concurrent/
CompletableFuture.java 127 * AltResult is used to box null as a result, as well as to hold
132 * box null results) being the only AltResult with a null
220 volatile Object result; // Either the result or boxed AltResult
245 static final class AltResult { // See above
247 AltResult(Throwable x) { this.ex = x; }
251 static final AltResult NIL = new AltResult(null);
274 static AltResult encodeThrowable(Throwable x) {
275 return new AltResult((x instanceof CompletionException) ? x :
295 else if (r instanceof AltResult && x == ((AltResult)r).ex
    [all...]
  /frameworks/base/
compiled-classes-phone     [all...]

Completed in 72 milliseconds