HomeSort by relevance Sort by last modified time
    Searched refs:tasks (Results 51 - 75 of 656) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/support/v14/preference/
build.gradle 66 def jarTask = project.tasks.create(name: "jar${suffix}", type: Jar){
71 def javadocTask = project.tasks.create(name: "javadoc${suffix}", type: Javadoc) {
77 def javadocJarTask = project.tasks.create(name: "javadocJar${suffix}", type: Jar) {
82 def sourcesJarTask = project.tasks.create(name: "sourceJar${suffix}", type: Jar) {
  /cts/tests/tests/permission/src/android/permission/cts/
NoActivityRelatedPermissionTest.java 61 // Current implementation should only return tasks for home and the caller.
63 assertTrue("Found tasks: " + runningTasks,
68 // Current implementation should only return tasks for home and the caller. Since there can
69 // be multiple home tasks, we remove them from the list and then check that there is one or
72 assertTrue("Found tasks: " + recentTasks, recentTasks == null || recentTasks.size() <= 1);
75 private void removeHomeTasks(List<ActivityManager.RecentTaskInfo> tasks) {
76 for (int i = tasks.size() -1; i >= 0; i--) {
77 ActivityManager.RecentTaskInfo task = tasks.get(i);
79 tasks.remove(i);
  /external/libmtp/examples/
evolution-sync.sh 65 cat $HOME/.evolution/tasks/local/system/tasks.ics \
  /external/vogar/src/vogar/tasks/
MkdirTask.java 17 package vogar.tasks;
RmTask.java 17 package vogar.tasks;
PrepareUserDirTask.java 17 package vogar.tasks;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
TaskStack.java 82 * A list of filtered tasks.
129 // filtered tasks
134 /** Sets the list of tasks */
135 void set(List<Task> tasks) {
137 mTasks.addAll(tasks);
151 /** Returns the index of this task in the list of filtered tasks */
159 /** Returns the size of the list of filtered tasks */
169 /** Updates the list of filtered tasks whenever the base task list changes */
193 /** Updates the mapping of tasks to indices. */
208 /** Returns the list of filtered tasks */
757 ArrayList<Task> tasks = computeAllTasksList(); local
778 ArrayList<Task> tasks = mStackTaskList.getTasks(); local
793 ArrayList<Task> tasks = new ArrayList<>(); local
809 ArrayList<Task> tasks = mStackTaskList.getTasks(); local
825 ArrayList<Task> tasks = mStackTaskList.getTasks(); local
841 ArrayList<Task> tasks = mStackTaskList.getTasks(); local
859 ArrayList<Task> tasks = computeAllTasksList(); local
898 ArrayList<Task> tasks = mStackTaskList.getTasks(); local
962 ArrayList<Task> tasks = mStackTaskList.getTasks(); local
1043 ArrayList<Task> tasks = mStackTaskList.getTasks(); local
1070 ArrayList<Task> tasks = mStackTaskList.getTasks(); local
    [all...]
  /external/guava/guava-testlib/src/com/google/common/util/concurrent/testing/
SameThreadScheduledExecutorService.java 101 Collection<? extends Callable<T>> tasks) throws InterruptedException {
102 Preconditions.checkNotNull(tasks, "tasks must not be null!");
103 return delegate.invokeAll(tasks);
108 Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)
110 Preconditions.checkNotNull(tasks, "tasks must not be null!");
112 return delegate.invokeAll(tasks, timeout, unit);
116 public <T> T invokeAny(Collection<? extends Callable<T>> tasks)
118 Preconditions.checkNotNull(tasks, "tasks must not be null!")
    [all...]
  /external/testng/src/main/java/org/testng/internal/
PoolService.java 40 public List<FutureType> submitTasksAndWait(List<? extends Callable<FutureType>> tasks) {
43 for (Callable<FutureType> callable : tasks) {
46 for (int i = 0; i < tasks.size(); i++) {
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/
Timer.java 24 /** Executes tasks in the future on the main loop thread.
42 private final Array<Task> tasks = new Array(false, 8); field in class:Timer
73 tasks.add(task);
80 /** Stops the timer, tasks will not be executed and time that passes will not be applied to the task delays. */
97 /** Cancels all tasks. */
100 for (int i = 0, n = tasks.size; i < n; i++)
101 tasks.get(i).cancel();
102 tasks.clear();
106 /** Returns true if the timer has no tasks in the queue. Note that this can change at any time. Synchronize on the timer
107 * instance to prevent tasks being added, removed, or updated. */
    [all...]
  /cts/hostsidetests/theme/
run_theme_capture_device.py 41 def executeParallel(tasks, setup, q, numberThreads):
43 def __init__(self, tasks, q):
46 self._tasks = tasks
75 t = ParallelExecutor(tasks, q)
153 tasks = []
154 tasks.append(doCapturing)
163 result = executeParallel(tasks, setup, configQ, numberThreads)
  /packages/apps/Dialer/tests/src/com/android/dialer/util/
FakeAsyncTaskExecutor.java 42 * Tasks submitted to this executor will not be run immediately. Rather they will be stored in a
43 * list of submitted tasks, where they can be examined. They can also be run on-demand using the run
53 /** The maximum length of time in ms to wait for tasks to execute during tests. */
149 * Removes the matching task from the list of submitted tasks, then runs it. The executor used
157 List<SubmittedTask> tasks = getSubmittedTasksByIdentifier(identifier, true); local
158 Assert.assertEquals("Expected one task " + identifier + ", got " + tasks, 1, tasks.size());
159 runTask(tasks.get(0));
163 * Runs all tasks whose identifier matches the given identifier.
165 * Removes all matching tasks from the list of submitted tasks, and runs them. The executor use
173 List<SubmittedTask> tasks = getSubmittedTasksByIdentifier(identifier, true); local
    [all...]
  /frameworks/data-binding/extensions/baseAdapters/
build.gradle 58 //create jar tasks
67 def javadocTask = project.tasks.create(name: "javadoc${suffix}", type: Javadoc) {
73 def javadocJarTask = project.tasks.create(name: "javadocJar${suffix}", type: Jar) {
79 def sourcesJarTask = project.tasks.create(name: "sourceJar${suffix}", type: Jar) {
  /external/autotest/client/site_tests/platform_ChromeCgroups/
platform_ChromeCgroups.py 20 Returns the set of tasks in a cgroup.
24 task_path = os.path.join(cgroup_dir, 'tasks')
28 tasks = set(line.rstrip() for line in task_file.readlines())
30 logging.info('tasks in cgroup %s: %s', cgroup_dir, ','.join(tasks))
31 return tasks
35 Check that the chrome_renderers cgroups are created and that tasks
58 raise error.TestFail('no tasks in foreground cgroup')
60 raise error.TestFail('no tasks in background cgroup')
  /prebuilts/gradle-plugin/com/android/tools/build/gradle-core/1.4.0-alpha1/
gradle-core-1.4.0-alpha1.jar 
  /cts/tests/tests/openglperf/src/android/openglperf/cts/
GlAppSwitchTest.java 122 List<ActivityManager.RunningTaskInfo> tasks = local
124 for (ActivityManager.RunningTaskInfo info : tasks) {
137 List<ActivityManager.RunningTaskInfo> tasks = local
139 for (ActivityManager.RunningTaskInfo info : tasks) {
  /development/ndk/platforms/android-3/include/linux/sunrpc/
sched.h 145 struct list_head tasks[RPC_NR_PRIORITY]; member in struct:rpc_wait_queue
160 #define RPC_WAITQ_INIT(var,qname) { .lock = SPIN_LOCK_UNLOCKED, .tasks = { [0] = LIST_HEAD_INIT(var.tasks[0]), [1] = LIST_HEAD_INIT(var.tasks[1]), [2] = LIST_HEAD_INIT(var.tasks[2]), }, }
162 #define RPC_WAITQ_INIT(var,qname) { .lock = SPIN_LOCK_UNLOCKED, .tasks = { [0] = LIST_HEAD_INIT(var.tasks[0]), [1] = LIST_HEAD_INIT(var.tasks[1]), [2] = LIST_HEAD_INIT(var.tasks[2]), }, .name = qname, }
  /external/jmdns/src/javax/jmdns/impl/
DNSTaskStarter.java 13 import javax.jmdns.impl.tasks.RecordReaper;
14 import javax.jmdns.impl.tasks.Responder;
15 import javax.jmdns.impl.tasks.resolver.ServiceInfoResolver;
16 import javax.jmdns.impl.tasks.resolver.ServiceResolver;
17 import javax.jmdns.impl.tasks.resolver.TypeResolver;
18 import javax.jmdns.impl.tasks.state.Announcer;
19 import javax.jmdns.impl.tasks.state.Canceler;
20 import javax.jmdns.impl.tasks.state.Prober;
21 import javax.jmdns.impl.tasks.state.Renewer;
143 * The timer is used to dispatch all outgoing messages of JmDNS. It is also used to dispatch maintenance tasks for the DNS cache
    [all...]
  /external/libgdx/tests/gdx-tests-gwt/
build.gradle 64 tasks.compileGwt.dependsOn(addSource)
65 tasks.draftCompileGwt.dependsOn(addSource)
  /external/smali/baksmali/
build.gradle 71 tasks.getByPath('build').dependsOn(fatJar)
102 tasks.getByPath(':release').dependsOn(proguard)
  /external/testng/src/main/java/org/testng/internal/thread/
ThreadUtil.java 31 * Parallel execution of the <code>tasks</code>. The startup is synchronized so this method
33 * @param tasks the list of tasks to be run
34 * @param threadPoolSize the size of the parallel threads to be used to execute the tasks
35 * @param timeout a maximum timeout to wait for tasks finalization
36 * @param triggerAtOnce <tt>true</tt> if the parallel execution of tasks should be trigger at once
38 public static final void execute(List<? extends Runnable> tasks, int threadPoolSize,
41 final CountDownLatch endGate= new CountDownLatch(tasks.size());
44 + " workers:" + tasks.size() + " threadPoolSize:" + threadPoolSize);
59 for (final Runnable task : tasks) {
    [all...]
  /external/vogar/src/vogar/
Mode.java 22 import vogar.tasks.Task;
  /external/vogar/src/vogar/android/
RunActivityTask.java 22 import vogar.tasks.RunActionTask;
  /frameworks/base/libs/hwui/thread/
TaskManager.cpp 92 std::vector<TaskWrapper> tasks; local
95 tasks.swap(mTasks);
98 for (size_t i = 0; i < tasks.size(); i++) {
99 const TaskWrapper& task = tasks[i];
  /frameworks/data-binding/gradlePlugin/src/main/java/android/databinding/tool/
DataBindingExcludeGeneratedTask.java 24 import org.gradle.api.tasks.Input;
25 import org.gradle.api.tasks.TaskAction;
26 import org.gradle.api.tasks.bundling.Jar;
47 private org.gradle.api.tasks.bundling.Jar packageTask;

Completed in 670 milliseconds

1 23 4 5 6 7 8 91011>>