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

  /libcore/luni/src/main/java/java/util/concurrent/
CompletableFuture.java 98 * AltResult is used to box null as a result, as well as to hold
103 * box null results) being the only AltResult with a null
191 volatile Object result; // Either the result or boxed AltResult
216 static final class AltResult { // See above
218 AltResult(Throwable x) { this.ex = x; }
222 static final AltResult NIL = new AltResult(null);
245 static AltResult encodeThrowable(Throwable x) {
246 return new AltResult((x instanceof CompletionException) ? x :
266 else if (r instanceof AltResult && x == ((AltResult)r).ex
    [all...]
  /frameworks/base/
compiled-classes-phone     [all...]

Completed in 121 milliseconds