HomeSort by relevance Sort by last modified time
    Searched defs:tasks (Results 126 - 150 of 217) sorted by null

1 2 3 4 56 7 8 9

  /frameworks/base/services/core/java/com/android/server/wm/
WindowAnimator.java 180 final ArrayList<Task> tasks = stack.getTasks(); local
181 for (int taskNdx = tasks.size() - 1; taskNdx >= 0; --taskNdx) {
182 final AppTokenList tokens = tasks.get(taskNdx).mAppTokens;
505 final ArrayList<Task> tasks = mService.getDisplayContentLocked(displayId).getTasks(); local
506 final int numTasks = tasks.size();
508 final AppTokenList tokens = tasks.get(taskNdx).mAppTokens;
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ForkJoinTask.java 27 * Abstract base class for tasks that run within a {@link ForkJoinPool}.
29 * lighter weight than a normal thread. Huge numbers of tasks and
49 * reflecting their main use as computational tasks calculating pure
56 * tasks or using synchronizers such as Phasers that are advertised to
57 * cooperate with fork/join scheduling. Subdividable tasks should also
60 * tasks. These guidelines are loosely enforced by not permitting
75 * of few if any <em>other</em> tasks should be dependent on a task
77 * tasks that are never joined often fall into this category.
78 * (2) To minimize resource impact, tasks should be small; ideally
81 * blocked tasks is known to be less than the pool's {@lin
    [all...]
ThreadPoolExecutor.java 25 * asynchronous tasks, due to reduced per-task invocation overhead,
27 * including threads, consumed when executing a collection of tasks.
29 * statistics, such as the number of completed tasks.
62 * number of concurrent tasks. Most typically, core and maximum pool
70 * started only when new tasks arrive, but this can be overridden
85 * continue, but might not be able to execute any tasks.</dd>
107 * submitted tasks. The use of this queue interacts with pool sizing:
129 * queue is a {@link SynchronousQueue} that hands off tasks to threads
135 * avoid rejection of new submitted tasks. This in turn admits the
141 * capacity) will cause new tasks to wait in the queue when al
1381 List<Runnable> tasks; local
    [all...]
  /frameworks/base/core/java/android/app/
ActivityManager.java 751 * Information you can retrieve about tasks that the user has most recently
817 * Task affiliation for grouping with other tasks.
895 * Flag for use with {@link #getRecentTasks}: return all tasks, even those
903 * recent tasks that currently are not available to the user.
908 * Provides a list that contains recent tasks for all
915 * Ignores all tasks that are on the home stack.
921 * <p></p>Return a list of the tasks that the user has recently launched, with
938 * own tasks (though see {@link #getAppTasks()} for the correct supported
939 * way to retrieve that information), and possibly some other tasks
943 * actual number returned may be smaller, depending on how many tasks th
1101 ArrayList<AppTask> tasks = new ArrayList<AppTask>(); local
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/build/gradle/0.8.1/
gradle-0.8.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle/0.8.3/
gradle-0.8.3.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle/0.9.0/
gradle-0.9.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle/0.9.1/
gradle-0.9.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle/0.9.3/
gradle-0.9.3.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle/0.8.0/
gradle-0.8.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle/0.5.7/
gradle-0.5.7.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle/0.11.2/
gradle-0.11.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle/0.12.1/
gradle-0.12.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle/0.12.2/
gradle-0.12.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle/0.7.4/
gradle-0.7.4.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle/0.7.0/
gradle-0.7.0.jar 
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TimelineView.js 62 // Create gpu tasks containers.
625 * @param {!Array.<!WebInspector.TimelineModel.Record>} tasks
628 _refreshUtilizationBars: function(name, tasks, container)
655 var taskIndex = insertionIndexForObjectInListSortedByFunction(startTime, tasks, compareEndTime);
663 for (; taskIndex < tasks.length; ++taskIndex) {
664 var task = tasks[taskIndex];
686 element._tasksInfo = {name: name, tasks: tasks, firstTaskIndex: taskIndex, lastTaskIndex: taskIndex};
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/
builtin-sched.c 127 struct task_desc **tasks; member in struct:perf_sched
354 sched->tasks = realloc(sched->tasks, sched->nr_tasks * sizeof(struct task_task *));
355 BUG_ON(!sched->tasks);
356 sched->tasks[task->nr] = task;
371 task = sched->tasks[i];
383 task1 = sched->tasks[i];
387 task2 = sched->tasks[j];
536 parms->task = task = sched->tasks[i];
558 task = sched->tasks[i]
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskStackView.java 94 // A convenience update listener to request updating clipping of tasks
195 * Gets the stack transforms of a list of tasks, and returns the visible range of tasks.
198 ArrayList<Task> tasks,
208 int taskCount = tasks.size();
214 // If there are less transforms than tasks, then add as many transforms as necessary
219 // If there are more transforms than tasks, then just subset the transform list
226 TaskViewTransform transform = mLayoutAlgorithm.getStackTransform(tasks.get(i),
259 * Gets the stack transforms of a list of tasks, and returns the visible range of tasks. Thi
279 ArrayList<Task> tasks = mStack.getTasks(); local
1023 ArrayList<Task> tasks = mStack.getTasks(); local
1066 ArrayList<Task> tasks = mStack.getTasks(); local
    [all...]
  /libcore/jsr166-tests/src/test/java/jsr166/
ScheduledExecutorSubclassTest.java 188 * scheduleAtFixedRate executes series of tasks at given rate
206 * scheduleWithFixedDelay executes series of tasks with given period
353 * when tasks complete
445 * getTaskCount increases, but doesn't overestimate, when tasks
452 final int TASKS = 5;
455 for (int i = 0; i < TASKS; i++)
462 assertEquals(TASKS, p.getTaskCount());
570 * getQueue returns the work queue, which contains queued tasks
577 ScheduledFuture[] tasks = new ScheduledFuture[5]; local
578 for (int i = 0; i < tasks.length; i++)
601 ScheduledFuture[] tasks = new ScheduledFuture[5]; local
635 ScheduledFuture[] tasks = new ScheduledFuture[5]; local
688 ScheduledFuture[] tasks = new ScheduledFuture[5]; local
717 ScheduledFuture[] tasks = new ScheduledFuture[5]; local
    [all...]
ScheduledExecutorTest.java 136 * scheduleAtFixedRate executes series of tasks at given rate
154 * scheduleWithFixedDelay executes series of tasks with given period
303 * when tasks complete
395 * getTaskCount increases, but doesn't overestimate, when tasks
402 final int TASKS = 5;
405 for (int i = 0; i < TASKS; i++)
412 assertEquals(TASKS, p.getTaskCount());
521 * getQueue returns the work queue, which contains queued tasks
528 ScheduledFuture[] tasks = new ScheduledFuture[5]; local
529 for (int i = 0; i < tasks.length; i++)
552 ScheduledFuture[] tasks = new ScheduledFuture[5]; local
586 ScheduledFuture[] tasks = new ScheduledFuture[5]; local
639 ScheduledFuture[] tasks = new ScheduledFuture[5]; local
668 ScheduledFuture[] tasks = new ScheduledFuture[5]; local
    [all...]
ThreadPoolExecutorSubclassTest.java 274 * when tasks complete
465 * getTaskCount increases, but doesn't overestimate, when tasks submitted
561 * getQueue returns the work queue, which contains queued tasks
572 FutureTask[] tasks = new FutureTask[5]; local
573 for (int i = 0; i < tasks.length; i++) {
581 tasks[i] = new FutureTask(task);
582 p.execute(tasks[i]);
586 assertFalse(q.contains(tasks[0]));
587 assertTrue(q.contains(tasks[tasks.length - 1]))
604 Runnable[] tasks = new Runnable[6]; local
643 FutureTask[] tasks = new FutureTask[5]; local
1021 TrackedNoOpRunnable[] tasks = new TrackedNoOpRunnable[5]; local
1047 TrackedNoOpRunnable[] tasks = new TrackedNoOpRunnable[5]; local
    [all...]
ThreadPoolExecutorTest.java 140 * when tasks complete
361 * getTaskCount increases, but doesn't overestimate, when tasks submitted
488 * getQueue returns the work queue, which contains queued tasks
499 FutureTask[] tasks = new FutureTask[5]; local
500 for (int i = 0; i < tasks.length; i++) {
508 tasks[i] = new FutureTask(task);
509 p.execute(tasks[i]);
513 assertFalse(q.contains(tasks[0]));
514 assertTrue(q.contains(tasks[tasks.length - 1]))
531 Runnable[] tasks = new Runnable[5]; local
570 FutureTask[] tasks = new FutureTask[5]; local
1122 TrackedNoOpRunnable[] tasks = new TrackedNoOpRunnable[5]; local
1148 TrackedNoOpRunnable[] tasks = new TrackedNoOpRunnable[5]; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ant.core_3.2.200.v20100427.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/27/1/.cp/lib/
antsupportlib.jar 

Completed in 842 milliseconds

1 2 3 4 56 7 8 9