/libcore/luni/src/main/java/java/util/concurrent/ |
AbstractExecutorService.java | 118 List<Future<T>> futures= new ArrayList<Future<T>>(ntasks); local 136 futures.add(ecs.submit(it.next())); 145 futures.add(ecs.submit(it.next())); 178 for (Future<T> f : futures) 203 List<Future<T>> futures = new ArrayList<Future<T>>(tasks.size()); local 208 futures.add(f); 211 for (Future<T> f : futures) { 221 return futures; 224 for (Future<T> f : futures) 235 List<Future<T>> futures = new ArrayList<Future<T>>(tasks.size()) local [all...] |
ExecutorCompletionService.java | 53 * List<Future<Result>> futures 58 * futures.add(ecs.submit(s)); 70 * for (Future<Result> f : futures)
|
ExecutorService.java | 226 * Executes the given tasks, returning a list of Futures holding 236 * @return A list of Futures representing the tasks, in the same 250 * Executes the given tasks, returning a list of Futures holding 264 * @return a list of Futures representing the tasks, in the same
|
package-info.java | 65 * providing a common extensible implementation of Futures, and
|
/external/guava/javadoc/com/google/common/util/concurrent/class-use/ |
Futures.html | 7 Uses of Class com.google.common.util.concurrent.Futures (Guava Libraries 2010.01.04) 18 parent.document.title="Uses of Class com.google.common.util.concurrent.Futures (Guava Libraries 2010.01.04)"; 42 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../com/google/common/util/concurrent/Futures.html" title="class in com.google.common.util.concurrent"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD> 62 <A HREF="Futures.html" target="_top"><B>NO FRAMES</B></A> 84 <B>Uses of Class<br>com.google.common.util.concurrent.Futures</B></H2> 86 No usage of com.google.common.util.concurrent.Futures 102 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../com/google/common/util/concurrent/Futures.html" title="class in com.google.common.util.concurrent"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD> 122 <A HREF="Futures.html" target="_top"><B>NO FRAMES</B></A>
|
ListenableFuture.html | 200 <TD><CODE><B>Futures.</B><B><A HREF="../../../../../../com/google/common/util/concurrent/Futures.html#chain(com.google.common.util.concurrent.ListenableFuture, com.google.common.base.Function)">chain</A></B>(<A HREF="../../../../../../com/google/common/util/concurrent/ListenableFuture.html" title="interface in com.google.common.util.concurrent">ListenableFuture</A><I> input, 217 <TD><CODE><B>Futures.</B><B><A HREF="../../../../../../com/google/common/util/concurrent/Futures.html#chain(com.google.common.util.concurrent.ListenableFuture, com.google.common.base.Function, java.util.concurrent.Executor)">chain</A></B>(<A HREF="../../../../../../com/google/common/util/concurrent/ListenableFuture.html" title="interface in com.google.common.util.concurrent">ListenableFuture</A><I> input, 235 <TD><CODE><B>Futures.</B><B><A HREF="../../../../../../com/google/common/util/concurrent/Futures.html#compose(com.google.common.util.concurrent.ListenableFuture, com.google.common.base.Function)">compose</A></B>(<A HREF="../../../../../../com/google/common/util/concurrent/ListenableFuture.html" title="interface in com.google.common.util.concurrent">ListenableFuture</A><I> future, 252 <TD><CODE><B>Futures.</B><B><A HREF="../../../../../../com/google/common/util/concurrent/Futures.html#compose(com.google.common.util.concurrent.ListenableFuture, com.google.common.base.Function, java.util.concurrent.Executor)">compose</A></B>(<A HREF="../../../../../../com/google/common/util/concurrent/ListenableFuture.html" title="interface in com.google.common.util.concurrent">ListenableFuture</A><I> future, 270 <TD><CODE><B>Futures.</B><B><A HREF="../../../../../../com/google/common/util/concurrent/Futures.html#immediateFailedFuture(java.lang.Throwable)">immediateFailedFuture</A></B>(<A HREF="http://jav (…) [all...] |
CheckedFuture.html | 142 <TD><CODE><B>Futures.</B><B><A HREF="../../../../../../com/google/common/util/concurrent/Futures.html#immediateCheckedFuture(T)">immediateCheckedFuture</A></B>(T value)</CODE> 160 <TD><CODE><B>Futures.</B><B><A HREF="../../../../../../com/google/common/util/concurrent/Futures.html#immediateFailedCheckedFuture(E)">immediateFailedCheckedFuture</A></B>(E exception)</CODE> 178 <TD><CODE><B>Futures.</B><B><A HREF="../../../../../../com/google/common/util/concurrent/Futures.html#makeChecked(java.util.concurrent.Future, com.google.common.base.Function)">makeChecked</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/util/concurrent/Future.html?is-external=true" title="class or interface in java.util.concurrent">Future</A><T> future,
|
UninterruptibleFuture.html | 123 <TD><CODE><B>Futures.</B><B><A HREF="../../../../../../com/google/common/util/concurrent/Futures.html#makeUninterruptible(java.util.concurrent.Future)">makeUninterruptible</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/util/concurrent/Future.html?is-external=true" title="class or interface in java.util.concurrent">Future</A><V> future)</CODE>
|
/external/guava/src/com/google/common/util/concurrent/ |
UninterruptibleFuture.java | 29 * Futures#makeUninterruptible(Future)}.
|
Futures.java | 42 public class Futures { 43 private Futures() {} 165 return Futures.makeChecked(future, new Function<Exception, E>() { 206 return makeChecked(Futures.<T>immediateFailedFuture(exception), 249 * RPC-based Futures. 299 * RPC-based Futures.
|
SimpleTimeLimiter.java | 130 Future<T> uninterruptible = Futures.makeUninterruptible(future);
|
/frameworks/base/core/tests/utillib/src/coretestutils/http/ |
MockWebServer.java | 62 // keep Futures around so we can rethrow any exceptions thrown by Callables 63 private final Queue<Future<?>> futures = new LinkedList<Future<?>>(); field in class:MockWebServer 186 futures.add(future); 195 final int originalSize = futures.size(); 197 Future<?> future = futures.remove(); 201 futures.add(future); // still running
|
/packages/providers/DownloadProvider/tests/src/tests/http/ |
MockWebServer.java | 61 // keep Futures around so we can rethrow any exceptions thrown by Callables 62 private final Queue<Future<?>> futures = new LinkedList<Future<?>>(); field in class:MockWebServer 180 futures.add(future); 189 final int originalSize = futures.size(); 191 Future<?> future = futures.remove(); 195 futures.add(future); // still running
|
/external/guava/javadoc/com/google/common/util/concurrent/ |
Futures.html | 7 Futures (Guava Libraries 2010.01.04) 18 parent.document.title="Futures (Guava Libraries 2010.01.04)"; 43 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/Futures.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD> 61 <A HREF="../../../../../index.html?com/google/common/util/concurrent/Futures.html" target="_top"><B>FRAMES</B></A> 62 <A HREF="Futures.html" target="_top"><B>NO FRAMES</B></A> 93 Class Futures</H2> 96 <IMG SRC="../../../../../resources/inherit.gif" ALT="extended by "><B>com.google.common.util.concurrent.Futures</B> 100 <DT><PRE>public class <B>Futures</B><DT>extends <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A></DL> 136 <TD><CODE><B><A HREF="../../../../../com/google/common/util/concurrent/Futures.html#chain(com.google.common.util.concurrent.ListenableFuture, com.google.common.base.Function)">chain</A></B>(<A HREF="../../../../../com/google/common/util/concurrent/ListenableFuture.html" title="interface in com.google.common.util.concurrent">ListenableFuture</A><I> input, 153 <TD><CODE><B><A HREF="../../../../../com/google/common/util/concurrent/Futures.html#chain(com.google.common.util.concurrent.ListenableFuture, com.google.common.base.Function, ja (…) [all...] |
package-frame.html | 69 <A HREF="Futures.html" title="class in com.google.common.util.concurrent" target="classFrame">Futures</A>
|
ListenableFuture.html | 58 <A HREF="../../../../../com/google/common/util/concurrent/Futures.html" title="class in com.google.common.util.concurrent"><B>PREV CLASS</B></A> 238 <A HREF="../../../../../com/google/common/util/concurrent/Futures.html" title="class in com.google.common.util.concurrent"><B>PREV CLASS</B></A>
|
UninterruptibleFuture.html | 106 thread. Obtain an instance of this type using <A HREF="../../../../../com/google/common/util/concurrent/Futures.html#makeUninterruptible(java.util.concurrent.Future)"><CODE>Futures.makeUninterruptible(Future)</CODE></A>.
|
package-summary.html | 183 <TD WIDTH="15%"><B><A HREF="../../../../../com/google/common/util/concurrent/Futures.html" title="class in com.google.common.util.concurrent">Futures</A></B></TD>
|
package-tree.html | 112 <LI TYPE="circle">com.google.common.util.concurrent.<A HREF="../../../../../com/google/common/util/concurrent/Futures.html" title="class in com.google.common.util.concurrent"><B>Futures</B></A><LI TYPE="circle">java.util.concurrent.<A HREF="http://java.sun.com/javase/6/docs/api/java/util/concurrent/FutureTask.html?is-external=true" title="class or interface in java.util.concurrent"><B>FutureTask</B></A><V> (implements java.util.concurrent.<A HREF="http://java.sun.com/javase/6/docs/api/java/util/concurrent/RunnableFuture.html?is-external=true" title="class or interface in java.util.concurrent">RunnableFuture</A><V>)
|
ForwardingService.html | 59 <A HREF="../../../../../com/google/common/util/concurrent/Futures.html" title="class in com.google.common.util.concurrent"><B>NEXT CLASS</B></A></FONT></TD> 449 <A HREF="../../../../../com/google/common/util/concurrent/Futures.html" title="class in com.google.common.util.concurrent"><B>NEXT CLASS</B></A></FONT></TD>
|
/external/guava/javadoc/com/google/common/base/class-use/ |
Function.html | 488 <TD><CODE><B>Futures.</B><B><A HREF="../../../../../com/google/common/util/concurrent/Futures.html#chain(com.google.common.util.concurrent.ListenableFuture, com.google.common.base.Function)">chain</A></B>(<A HREF="../../../../../com/google/common/util/concurrent/ListenableFuture.html" title="interface in com.google.common.util.concurrent">ListenableFuture</A><I> input, 505 <TD><CODE><B>Futures.</B><B><A HREF="../../../../../com/google/common/util/concurrent/Futures.html#chain(com.google.common.util.concurrent.ListenableFuture, com.google.common.base.Function, java.util.concurrent.Executor)">chain</A></B>(<A HREF="../../../../../com/google/common/util/concurrent/ListenableFuture.html" title="interface in com.google.common.util.concurrent">ListenableFuture</A><I> input, 523 <TD><CODE><B>Futures.</B><B><A HREF="../../../../../com/google/common/util/concurrent/Futures.html#compose(java.util.concurrent.Future, com.google.common.base.Function)">compose</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/util/concurrent/Future.html?is-external=true" title="class or interface in java.util.concurrent">Future</A><I> future, [all...] |
/external/guava/javadoc/ |
index-all.html | [all...] |
allclasses-frame.html | 160 <A HREF="com/google/common/util/concurrent/Futures.html" title="class in com.google.common.util.concurrent" target="classFrame">Futures</A>
|
allclasses-noframe.html | 160 <A HREF="com/google/common/util/concurrent/Futures.html" title="class in com.google.common.util.concurrent">Futures</A>
|
/external/clang/test/ |
cxx-sections.data | [all...] |