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

  /libcore/luni/src/test/java/tests/api/java/util/concurrent/
ExecutorCompletionServiceTest.java 26 * Creating a new ECS with null Executor throw NPE
30 ExecutorCompletionService ecs = new ExecutorCompletionService(null); local
36 * Creating a new ECS with null queue throw NPE
41 ExecutorCompletionService ecs = new ExecutorCompletionService(e, null); local
51 ExecutorCompletionService ecs = new ExecutorCompletionService(e); local
54 ecs.submit(c);
67 ExecutorCompletionService ecs = new ExecutorCompletionService(e); local
70 ecs.submit(r, Boolean.TRUE);
83 ExecutorCompletionService ecs = new ExecutorCompletionService(e); local
86 ecs.submit(c)
99 ExecutorCompletionService ecs = new ExecutorCompletionService(e); local
115 ExecutorCompletionService ecs = new ExecutorCompletionService(e); local
138 ExecutorCompletionService ecs = new ExecutorCompletionService(e); local
167 ExecutorCompletionService<String> ecs = local
200 ExecutorCompletionService<String> ecs = local
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
AbstractExecutorService.java 123 ExecutorCompletionService<T> ecs = local
140 futures.add(ecs.submit(it.next()));
145 Future<T> f = ecs.poll();
149 futures.add(ecs.submit(it.next()));
155 f = ecs.poll(nanos, TimeUnit.NANOSECONDS);
163 f = ecs.take();

Completed in 753 milliseconds