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

1 2

  /libcore/luni/src/test/java/libcore/java/lang/
LambdaImplementationTest.java 49 List<Callable<String>> callables = new ArrayList<>(); local
51 callables.add(() -> "Hello World");
53 assertMultipleDefinitionCharacteristics(r1, callables.get(0));
54 assertMultipleInstanceCharacteristics(callables.get(0), callables.get(1));
93 List<Callable<String>> callables = new ArrayList<>(); local
95 callables.add(LambdaImplementationTest::staticMethod);
97 assertMultipleDefinitionCharacteristics(r1, callables.get(0));
98 assertMultipleInstanceCharacteristics(callables.get(0), callables.get(1))
112 List<Callable<String>> callables = new ArrayList<>(); local
133 List<Callable<String>> callables = new ArrayList<>(); local
150 List<Callable<String>> callables = new ArrayList<>(); local
173 List<Callable<String>> callables = new ArrayList<>(); local
207 List<Callable<String>> callables = new ArrayList<>(); local
    [all...]
  /external/robolectric/v1/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/testng/src/main/java/org/testng/internal/thread/
ThreadUtil.java 58 List<Callable<Object>> callables = Lists.newArrayList(); local
60 callables.add(new Callable<Object>() {
72 pooledExecutor.invokeAll(callables, timeout, TimeUnit.MILLISECONDS);
74 pooledExecutor.invokeAll(callables);
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
runtime.py 365 callables=None, inherits=None,
370 if callables is not None:
371 self.callables = dict([(c.__name__, c) for c in callables])
373 callables = () variable in class:Namespace
516 if self.callables:
517 for key in self.callables:
518 yield (key, self.callables[key])
521 if key in self.callables:
522 val = self.callables[key
    [all...]
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/android/util/concurrent/
RoboExecutorService.java 114 public <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> callables) throws InterruptedException {
119 public <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> callables, long l, TimeUnit timeUnit) throws InterruptedException {
124 public <T> T invokeAny(Collection<? extends Callable<T>> callables) throws InterruptedException, ExecutionException {
129 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/
WrappingExecutorServiceTest.java 88 Callable<String> task = Callables.returning(RESULT_VALUE);
143 List<Callable<String>> callables = Lists.newArrayList(); local
145 callables.add(Callables.returning(RESULT_VALUE + i));
147 return callables;
MoreExecutorsTest.java 273 List<Callable<String>> callables = local
274 ImmutableList.of(Callables.returning("x"));
277 results = service.invokeAll(callables);
280 results = service.invokeAll(callables, 1, SECONDS);
310 service.schedule(Callables.returning(null), 1, TimeUnit.MILLISECONDS);
  /prebuilts/tools/common/m2/repository/org/jdeferred/jdeferred-core/1.2.2/
jdeferred-core-1.2.2.jar 
  /prebuilts/tools/common/m2/repository/org/jdeferred/jdeferred-core/1.2.3/
jdeferred-core-1.2.3.jar 
  /external/tensorflow/tensorflow/tools/docs/
parser.py 662 This function uses `__name__` for callables if it is available. This can lead
    [all...]
  /external/robolectric/v3/runtime/
shadows-core-3.1-SNAPSHOT-16.jar 
shadows-core-3.1-SNAPSHOT-17.jar 
shadows-core-3.1-SNAPSHOT-18.jar 
shadows-core-3.1-SNAPSHOT-19.jar 
shadows-core-3.1-SNAPSHOT-21.jar 
shadows-core-3.1-SNAPSHOT-22.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
shadows-core-v16-3.1.1.jar 
shadows-core-v17-3.1.1.jar 
shadows-core-v18-3.1.1.jar 
shadows-core-v19-3.1.1.jar 
shadows-core-v21-3.1.1.jar 
shadows-core-v22-3.1.1.jar 
shadows-core-v23-3.1.1.jar 
  /prebuilts/misc/common/robolectric/3.4.2/lib/
framework-3.4.2.jar 
  /prebuilts/misc/common/robolectric/3.5.1/lib/
shadows-framework-3.5.1.jar 

Completed in 187 milliseconds

1 2