HomeSort by relevance Sort by last modified time
    Searched full:callables (Results 1 - 25 of 33) sorted by null

1 2

  /external/robolectric/src/main/java/com/xtremelabs/robolectric/util/
RobolectricBackgroundExecutorService.java 68 public <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> callables) throws InterruptedException {
73 public <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> callables, long l, TimeUnit timeUnit) throws InterruptedException {
78 public <T> T invokeAny(Collection<? extends Callable<T>> callables) throws InterruptedException, ExecutionException {
83 public <T> T invokeAny(Collection<? extends Callable<T>> callables, long l, TimeUnit timeUnit) throws InterruptedException, ExecutionException, TimeoutException {
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
CallablesTest.java 24 * Unit tests for {@link Callables}.
31 assertNull(Callables.returning(null).call());
34 Callable<Object> callable = Callables.returning(value);
MoreExecutorsTest.java 209 List<Callable<String>> callables = local
210 ImmutableList.of(Callables.returning("x"));
213 results = service.invokeAll(callables);
216 results = service.invokeAll(callables, 1, SECONDS);
FuturesTest.java     [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
Callables.java 29 public final class Callables {
30 private Callables() {}
  /external/guava/guava-tests/test/com/google/common/cache/
CacheExpirationTest.java 27 import com.google.common.util.concurrent.Callables;
328 cache.get(2, Callables.returning(-2));
391 cache.get(8, Callables.returning(-8));
LocalLoadingCacheTest.java 30 import com.google.common.util.concurrent.Callables;
75 tester.setDefault(Callable.class, Callables.returning(null));
CacheLoadingTest.java 37 import com.google.common.util.concurrent.Callables;
150 assertSame(value, cache.get(key, Callables.returning(value)));
625 cache.get(new Object(), Callables.returning(null));
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/app/
Application.java 560 * Callables are executed right at the beginning of the main loop.
575 // Make sure the audio renderer is available to callables
  /external/chromium_org/v8/test/mjsunit/
json.js 397 // Ensure that wrappers and callables are handled correctly.
  /external/v8/test/mjsunit/
json.js 351 // Ensure that wrappers and callables are handled correctly.
  /libcore/luni/src/main/java/java/util/concurrent/
package-info.java 227 * Similarly for {@code Callables} submitted to an {@code ExecutorService}.
ForkJoinTask.java     [all...]
  /external/chromium/testing/gmock/include/gmock/
gmock-generated-actions.h.pump 87 // CallableHelper has static methods for invoking "callables",
90 // callables. In particular, you can use:
gmock-generated-actions.h 285 // CallableHelper has static methods for invoking "callables",
288 // callables. In particular, you can use:
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/
dbtables.py 566 # catch all exceptions here since we call unknown callables
700 # leave all unknown condition callables alone as equals
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/
dbtables.py 566 # catch all exceptions here since we call unknown callables
700 # leave all unknown condition callables alone as equals
  /prebuilts/tools/common/gradle-plugins/repository/com/google/guava/guava/14.0/
guava-14.0-sources.jar 
  /prebuilts/tools/common/guava-tools/
src.zip 
  /prebuilts/tools/common/m2/repository/com/google/guava/guava/13.0.1/
guava-13.0.1-sources.jar 
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsProvider2.java 315 private static final int CALLABLES = 3011;
    [all...]
  /external/chromium_org/tools/site_compare/
command_line.py 36 """Initializes Command from names and helptext, plus optional callables.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
managers.py 932 # Types/callables which we will register with SyncManager
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
managers.py 932 # Types/callables which we will register with SyncManager
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
tree.py     [all...]

Completed in 466 milliseconds

1 2