Searched refs:tasks (Results 1 - 25 of 44) sorted by relevance

12

/frameworks/data-binding/library/
H A Dbuild.gradle66 //create jar tasks
75 def javadocTask = project.tasks.create(name: "javadoc${suffix}", type: Javadoc) {
76 source variant.javaCompile.source + project(":baseLibrary").tasks['compileJava'].source
81 def javadocJarTask = project.tasks.create(name: "javadocJar${suffix}", type: Jar) {
87 def sourcesJarTask = project.tasks.create(name: "sourceJar${suffix}", type: Jar) {
114 tasks['packageReleaseJar'].exclude('android/databinding/DataBinderMapper.*')
115 tasks['packageReleaseJar'].exclude('android/databinding/DataBindingComponent.*')
116 tasks['packageDebugJar'].exclude('android/databinding/DataBinderMapper.*')
117 tasks['packageDebugJar'].exclude('android/databinding/DataBindingComponent.*')
/frameworks/data-binding/developmentPlugins/localizeMavenPlugin/src/main/groovy/android/databinding/
H A DMavenDependencyCollectorPlugin.groovy28 def localizeDependenciesTask = parent.tasks.findByName(DEFAULT_TASK_NAME)
30 localizeDependenciesTask = parent.tasks.
37 project.tasks.create("collectDependenciesOf${it.getName().capitalize()}", MavenDependencyCollectorTask, {
44 project.tasks.create("buildLicenseNotice", ExportLicensesTask) {
H A DMavenDependencyCollectorTask.groovy41 import org.gradle.api.tasks.Input
42 import org.gradle.api.tasks.TaskAction
/frameworks/data-binding/gradlePlugin/
H A Dbuild.gradle23 tasks.create(name : 'copyBuildVersion') << {
30 tasks['uploadArchives'].dependsOn('copyBuildVersion')
31 tasks['copyBuildVersion'].dependsOn('processResources')
/frameworks/data-binding/compilerCommon/
H A Dbuild.gradle47 project.tasks.create(name : "generateXmlParser", type : JavaExec) {
54 project.tasks.create(name : "generateGrammar", type : JavaExec) {
/frameworks/data-binding/baseLibrary/
H A Dbuild.gradle40 def javadocTask = project.tasks.create(name: "javadocBaseLibrary", type: Javadoc) {
44 def javadocJarTask = project.tasks.create(name: "javadocJarBaseLibrary", type: Jar) {
50 def sourcesJarTask = project.tasks.create(name: "sourceJarBaseLibrary", type: Jar) {
/frameworks/data-binding/compiler/
H A Dbuild.gradle63 tasks['compileTestKotlin'].dependsOn libProject.tasks['uploadJarArchives']
69 tasks.findByName("buildLicenseNoticeFor${project.name.capitalize()}").execute()
/frameworks/data-binding/developmentPlugins/bintrayPlugin/src/main/groovy/android/databinding/
H A DBintrayPlugin.groovy21 import org.gradle.api.tasks.Upload
33 def uploadArchivesTask = target.tasks.findByName("uploadArchives")
38 def bintrayTask = target.tasks.create(taskName, UploadToBintrayTask, {
H A DUploadToBintrayTask.groovy23 import org.gradle.api.tasks.Input;
24 import org.gradle.api.tasks.TaskAction;
/frameworks/base/core/tests/overlaytests/
H A Dtestrunner.py389 def __init__(self, type, tasks):
391 self.tasks = tasks
400 for t in self.tasks:
407 tasks = [
417 return CompoundTask(TASK_DISABLE_OVERLAYS, tasks)
420 tasks = [
427 return CompoundTask(TASK_ENABLE_SINGLE_OVERLAY, tasks)
430 tasks = [
439 return CompoundTask(TASK_ENABLE_MULTIPLE_OVERLAYS, tasks)
569 tasks = [] variable
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
H A DTaskStack.java43 * A list of filtered tasks.
59 // If the tasks are exactly the same pre/post filter, then just reset it
85 /** Sets the list of tasks */
86 void set(List<Task> tasks) { argument
88 mTasks.addAll(tasks);
102 /** Returns the index of this task in the list of filtered tasks */
110 /** Returns the size of the list of filtered tasks */
120 /** Updates the list of filtered tasks whenever the base task list changes */
137 /** Updates the mapping of tasks to indices. */
152 /** Returns the list of filtered tasks */
269 setTasks(List<Task> tasks) argument
[all...]
H A DRecentsTaskLoadPlan.java40 * 1) preloadRawTasks() will load the raw set of recents tasks from the system
50 /** The set of conditions to load tasks. */
78 * An optimization to preload the raw list of tasks.
85 if (DEBUG) Log.d(TAG, "preloadRawTasks, tasks: " + mRawTasks.size());
89 * Preloads the list of recent tasks from the system. After this call, the TaskStack will
90 * have a list of all the recent tasks with their metadata, not including icons or
199 if (DEBUG) Log.d(TAG, "executePlan, # tasks: " + opts.numVisibleTasks +
205 // Iterate through each of the tasks and load them according to the load conditions.
208 ArrayList<Task> tasks = mStacks.valueAt(j).getTasks();
209 int taskCount = tasks
[all...]
/frameworks/data-binding/extensions/baseAdapters/
H A Dbuild.gradle51 //create jar tasks
60 def javadocTask = project.tasks.create(name: "javadoc${suffix}", type: Javadoc) {
66 def javadocJarTask = project.tasks.create(name: "javadocJar${suffix}", type: Jar) {
72 def sourcesJarTask = project.tasks.create(name: "sourceJar${suffix}", type: Jar) {
/frameworks/base/libs/hwui/thread/
H A DTaskManager.cpp92 Vector<TaskWrapper> tasks; local
95 tasks = mTasks;
99 for (size_t i = 0; i < tasks.size(); i++) {
100 const TaskWrapper& task = tasks.itemAt(i);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskStackViewFilterAlgorithm.java44 final ArrayList<Task> tasks,
51 int duration = getExitTransformsForFilterAnimation(curTasks, curTaskTransforms, tasks,
58 int inDuration = getEnterTransformsForFilterAnimation(tasks, taskTransforms,
81 int duration = getEnterTransformsForFilterAnimation(tasks,
99 int getEnterTransformsForFilterAnimation(ArrayList<Task> tasks, argument
104 int taskCount = tasks.size();
106 Task task = tasks.get(i);
139 ArrayList<Task> tasks, ArrayList<TaskViewTransform> taskTransforms,
151 int taskIndex = tasks.indexOf(task);
42 startFilteringAnimation(ArrayList<Task> curTasks, ArrayList<TaskViewTransform> curTaskTransforms, final ArrayList<Task> tasks, final ArrayList<TaskViewTransform> taskTransforms) argument
137 getExitTransformsForFilterAnimation(ArrayList<Task> curTasks, ArrayList<TaskViewTransform> curTaskTransforms, ArrayList<Task> tasks, ArrayList<TaskViewTransform> taskTransforms, HashMap<TaskView, TaskViewTransform> childViewTransformsOut, ArrayList<TaskView> childrenToRemoveOut) argument
H A DTaskStackViewLayoutAlgorithm.java30 * We are using a curve that defines the curve of the tasks as that go back in the recents list.
45 VisibilityReport(int tasks, int thumbnails) { argument
46 numVisibleTasks = tasks;
107 void computeMinMaxScroll(ArrayList<Task> tasks, boolean launchedWithAltTab, argument
112 // Return early if we have no tasks
113 if (tasks.isEmpty()) {
144 int taskCount = tasks.size();
146 Task task = tasks.get(i);
159 mMinScrollP = tasks.size() == 1 ? Math.max(mMaxScrollP, 0f) : 0f;
170 * Computes the maximum number of visible tasks an
173 computeStackVisibilityReport(ArrayList<Task> tasks) argument
[all...]
H A DTaskStackView.java107 // A convenience update listener to request updating clipping of tasks
267 * Gets the stack transforms of a list of tasks, and returns the visible range of tasks.
270 ArrayList<Task> tasks,
275 int taskCount = tasks.size();
281 // If there are less transforms than tasks, then add as many transforms as necessary
286 // If there are more transforms than tasks, then just subset the transform list
293 TaskViewTransform transform = mLayoutAlgorithm.getStackTransform(tasks.get(i),
332 ArrayList<Task> tasks = mStack.getTasks();
335 boolean isValidVisibleRange = updateStackTransforms(mCurrentTaskTransforms, tasks,
269 updateStackTransforms(ArrayList<TaskViewTransform> taskTransforms, ArrayList<Task> tasks, float stackScroll, int[] visibleRangeOut, boolean boundTranslationsToRect) argument
[all...]
/frameworks/data-binding/gradlePlugin/src/main/java/android/databinding/tool/
H A DDataBindingExcludeGeneratedTask.java24 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;
H A DDataBindingExportInfoTask.java19 import org.gradle.api.tasks.TaskAction;
H A DDataBindingProcessLayoutsTask.java22 import org.gradle.api.tasks.TaskAction;
/frameworks/data-binding/extensions/
H A Dbuild.gradle37 preparePrebuilds.dependsOn project.tasks.findAll {task -> task.name.startsWith('prebuild')}
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
H A DSystemServicesProxy.java151 /** Returns a list of the recents tasks */
156 // If we are mocking, then create some recent tasks
158 ArrayList<ActivityManager.RecentTaskInfo> tasks =
182 tasks.add(rti);
184 return tasks;
187 // Remove home/recents/excluded tasks
190 List<ActivityManager.RecentTaskInfo> tasks = mAm.getRecentTasksForUser(numTasksToQuery,
196 // Break early if we can't get a valid set of tasks
197 if (tasks == null) {
202 Iterator<ActivityManager.RecentTaskInfo> iter = tasks
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DTaskPersister.java95 * tasks needing persisting are written to disk. There is no delay between writes.
125 if (DEBUG) Slog.d(TAG, "Creating tasks directory " + sTasksDir);
127 Slog.e(TAG, "Failure creating tasks directory " + sTasksDir);
319 private TaskRecord taskIdToTask(int taskId, ArrayList<TaskRecord> tasks) { argument
323 for (int taskNdx = tasks.size() - 1; taskNdx >= 0; --taskNdx) {
324 final TaskRecord task = tasks.get(taskNdx);
334 final ArrayList<TaskRecord> tasks = new ArrayList<TaskRecord>();
340 return tasks;
370 tasks.add(task);
403 for (int taskNdx = tasks
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DDisplayContent.java153 * Retrieve the tasks on this display in stack order from the bottommost TaskStack up.
330 final ArrayList<Task> tasks = stack.getTasks();
331 for (int taskNdx = tasks.size() - 1; taskNdx >= 0; --taskNdx) {
332 final Task task = tasks.get(taskNdx);
393 ArrayList<Task> tasks = stack.getTasks();
394 for (int taskNdx = tasks.size() - 1; taskNdx >= 0; --taskNdx) {
395 final Task task = tasks.get(taskNdx);
/frameworks/base/libs/hwui/
H A DCaches.h173 TaskManager tasks; member in class:android::uirenderer::Caches

Completed in 441 milliseconds

12