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

1 2 3

  /external/guava/guava/src/com/google/common/util/concurrent/
ExecutionList.java 48 // Logger to log exceptions caught when running runnables.
56 private RunnableExecutorPair runnables; field in class:ExecutionList
93 runnables = new RunnableExecutorPair(runnable, executor, runnables);
98 // getting called before some of the previously added runnables, but we're
100 // among runnables we'd have to modify the logic here to allow it.
125 list = runnables;
126 runnables = null; // allow GC to free listeners even if this stays around for a while.
128 // If we succeeded then list holds all the runnables we to execute. The pairs in the stack are
159 // punish the other runnables if we're given a bad one. We onl
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
ExecutorUtils.java 122 public static Runnable chain(final Runnable... runnables) {
123 return new RunnableChain(runnables);
130 private RunnableChain(final Runnable... runnables) {
131 if (runnables == null || runnables.length == 0) {
134 mRunnables = runnables;
  /packages/apps/TV/src/com/android/tv/ui/
DialogUtils.java 32 * @param runnables Runnable for each item
35 final Runnable[] runnables) {
37 SoftPreconditions.checkState(size == runnables.length);
42 Runnable runnable = runnables[which];
  /external/libgdx/backends/gdx-backend-headless/src/com/badlogic/gdx/backends/headless/
HeadlessApplication.java 49 protected final Array<Runnable> runnables = new Array<Runnable>(); field in class:HeadlessApplication
129 // If one of the runnables set running to false, for example after an exit().
145 synchronized (runnables) {
146 for (int i = runnables.size - 1; i >= 0; i--)
147 executedRunnables.add(runnables.get(i));
148 runnables.clear();
227 synchronized (runnables) {
228 runnables.add(runnable);
  /external/libgdx/backends/gdx-backend-lwjgl3/src/com/badlogic/gdx/backends/lwjgl3/
Lwjgl3Window.java 41 private final Array<Runnable> runnables = new Array<Runnable>(); field in class:Lwjgl3Window
157 synchronized(runnables) {
158 runnables.add(runnable);
241 synchronized(runnables) {
242 executedRunnables.addAll(runnables);
243 runnables.clear();
Lwjgl3Application.java 57 private final Array<Runnable> runnables = new Array<Runnable>(); field in class:Lwjgl3Application
135 synchronized (runnables) {
137 executedRunnables.addAll(runnables);
138 runnables.clear();
287 synchronized (runnables) {
288 runnables.add(runnable);
  /external/libgdx/backends/gdx-backend-jglfw/src/com/badlogic/gdx/backends/jglfw/
JglfwApplication.java 48 private final Array<Runnable> runnables = new Array(); field in class:JglfwApplication
203 /** Handles posted runnables, input, and rendering for each frame. */
241 synchronized (runnables) {
242 for (int i = runnables.size - 1; i >= 0; i--)
243 executedRunnables.add(runnables.get(i));
244 runnables.clear();
335 synchronized (runnables) {
336 runnables.add(runnable);
  /external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
ExecutionListBenchmark.java 278 final Queue<OldExecutionList.RunnableExecutorPair> runnables = Lists.newLinkedList();
287 synchronized (runnables) {
289 runnables.add(new RunnableExecutorPair(runnable, executor));
301 synchronized (runnables) {
308 while (!runnables.isEmpty()) {
309 runnables.poll().execute();
338 private RunnableExecutorPair runnables;
348 runnables = new RunnableExecutorPair(runnable, executor, runnables);
362 list = runnables;
    [all...]
  /external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/
LwjglAWTCanvas.java 69 final Array<Runnable> runnables = new Array(); field in class:LwjglAWTCanvas
266 // If one of the runnables set running to false, for example after an exit().
284 synchronized (runnables) {
285 for (int i = runnables.size - 1; i >= 0; i--)
286 executedRunnables.addAll(runnables.get(i));
287 runnables.clear();
392 synchronized (runnables) {
393 runnables.add(runnable);
LwjglApplication.java 51 protected final Array<Runnable> runnables = new Array<Runnable>(); field in class:LwjglApplication
210 // If one of the runnables set running to false, for example after an exit().
250 synchronized (runnables) {
251 for (int i = runnables.size - 1; i >= 0; i--)
252 executedRunnables.add(runnables.get(i));
253 runnables.clear();
340 synchronized (runnables) {
341 runnables.add(runnable);
LwjglCanvas.java 59 final Array<Runnable> runnables = new Array(); field in class:LwjglCanvas
231 // If one of the runnables set running to false, for example after an exit().
256 synchronized (runnables) {
257 for (int i = runnables.size - 1; i >= 0; i--)
258 executedRunnables.addAll(runnables.get(i));
259 runnables.clear();
346 synchronized (runnables) {
347 runnables.add(runnable);
  /external/libgdx/backends/gdx-backend-moe/src/com/badlogic/gdx/backends/iosmoe/
IOSApplication.java 116 Array<Runnable> runnables = new Array<Runnable>(); field in class:IOSApplication
398 synchronized (runnables) {
399 runnables.add(runnable);
405 synchronized (runnables) {
407 executedRunnables.addAll(runnables);
408 runnables.clear();
  /external/libgdx/backends/gdx-backend-robovm/src/com/badlogic/gdx/backends/iosrobovm/
IOSApplication.java 107 Array<Runnable> runnables = new Array<Runnable>(); field in class:IOSApplication
405 synchronized (runnables) {
406 runnables.add(runnable);
412 synchronized (runnables) {
414 executedRunnables.addAll(runnables);
415 runnables.clear();
  /external/testng/src/main/java/org/testng/internal/thread/graph/
GraphThreadPoolExecutor.java 62 List<IWorker<T>> runnables = m_factory.createWorkers(freeNodes); local
63 for (IWorker<T> r : runnables) {
  /external/libgdx/backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/
AndroidDaydream.java 75 protected final Array<Runnable> runnables = new Array<Runnable>(); field in class:AndroidDaydream
310 synchronized (runnables) {
311 runnables.add(runnable);
399 return runnables;
AndroidLiveWallpaper.java 68 protected final Array<Runnable> runnables = new Array<Runnable>(); field in class:AndroidLiveWallpaper
201 synchronized (runnables) {
202 runnables.add(runnable);
331 return runnables;
AndroidApplication.java 74 protected final Array<Runnable> runnables = new Array<Runnable>(); field in class:AndroidApplication
389 synchronized (runnables) {
390 runnables.add(runnable);
504 return runnables;
AndroidFragmentApplication.java 65 protected final Array<Runnable> runnables = new Array<Runnable>(); field in class:AndroidFragmentApplication
324 synchronized (runnables) {
325 runnables.add(runnable);
413 return runnables;
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/
GwtApplication.java 71 private Array<Runnable> runnables = new Array<Runnable>(); field in class:GwtApplication
223 runnablesHelper.addAll(runnables);
224 runnables.clear();
435 runnables.add(runnable);
  /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/robolectric/v3/
robolectric-utils-3.1-SNAPSHOT.jar 
  /cts/tests/tests/media/src/android/media/cts/
DecoderTest.java     [all...]
  /external/testng/src/main/java/org/testng/
TestRunner.java 780 List<IWorker<ITestNGMethod>> runnables = createWorkers(freeNodes); local
781 for (IWorker<ITestNGMethod> r : runnables) {
    [all...]
  /prebuilts/tools/common/m2/repository/org/testng/testng/6.9.10/
testng-6.9.10.jar 

Completed in 565 milliseconds

1 2 3