Searched refs:runnables (Results 1 - 25 of 32) sorted by relevance

12

/external/guava/guava/src/com/google/common/util/concurrent/
H A DExecutionList.java48 // 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 i
[all...]
/external/libgdx/backends/gdx-backend-headless/src/com/badlogic/gdx/backends/headless/
H A DHeadlessApplication.java49 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/
H A DLwjgl3Window.java41 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();
H A DLwjgl3Application.java57 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/
H A DJglfwApplication.java48 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/
H A DExecutionListBenchmark.java278 final Queue<OldExecutionList.RunnableExecutorPair> runnables = Lists.newLinkedList(); field in class:ExecutionListBenchmark.OldExecutionList
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; field in class:ExecutionListBenchmark.NewExecutionListWithoutReverse
348 runnables = new RunnableExecutorPair(runnable, executor, runnables);
362 list = runnables;
[all...]
/external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/
H A DLwjglAWTCanvas.java69 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);
H A DLwjglApplication.java51 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);
H A DLwjglCanvas.java59 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/
H A DIOSApplication.java116 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/
H A DIOSApplication.java107 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/
H A DGraphThreadPoolExecutor.java62 List<IWorker<T>> runnables = m_factory.createWorkers(freeNodes);
63 for (IWorker<T> r : runnables) {
/external/libgdx/backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/
H A DAndroidDaydream.java75 protected final Array<Runnable> runnables = new Array<Runnable>(); field in class:AndroidDaydream
310 synchronized (runnables) {
311 runnables.add(runnable);
399 return runnables;
H A DAndroidLiveWallpaper.java68 protected final Array<Runnable> runnables = new Array<Runnable>(); field in class:AndroidLiveWallpaper
201 synchronized (runnables) {
202 runnables.add(runnable);
331 return runnables;
H A DAndroidApplication.java74 protected final Array<Runnable> runnables = new Array<Runnable>(); field in class:AndroidApplication
389 synchronized (runnables) {
390 runnables.add(runnable);
504 return runnables;
H A DAndroidFragmentApplication.java65 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/
H A DGwtApplication.java71 private Array<Runnable> runnables = new Array<Runnable>(); field in class:GwtApplication
223 runnablesHelper.addAll(runnables);
224 runnables.clear();
435 runnables.add(runnable);
/external/robolectric/v3/
H A Drobolectric-utils-3.1-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/robolectric/ org/robolectric/util/ org/robolectric/internal/ org/ ...
/external/testng/src/main/java/org/testng/
H A DTestRunner.java780 List<IWorker<ITestNGMethod>> runnables = createWorkers(freeNodes);
781 for (IWorker<ITestNGMethod> r : runnables) {
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
H A Djdimodel.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/guice/extensions/struts2/lib/
H A Dant-1.6.5.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.ide_3.6.2.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/jarjar/lib/
H A Dapache-ant-1.9.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 2337 milliseconds

12