HomeSort by relevance Sort by last modified time
    Searched refs:TaskKey (Results 1 - 9 of 9) sorted by null

  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
KeyStoreLruCache.java 32 HashMap<Integer, Task.TaskKey> mTaskKeys = new HashMap<Integer, Task.TaskKey>();
47 final V get(Task.TaskKey key) {
54 final V getAndInvalidateIfModified(Task.TaskKey key) {
55 Task.TaskKey lastKey = mTaskKeys.get(key.id);
68 final void put(Task.TaskKey key, V value) {
74 final void remove(Task.TaskKey key) {
TaskGrouping.java 12 Task.TaskKey mFrontMostTaskKey;
13 ArrayList<Task.TaskKey> mTaskKeys = new ArrayList<Task.TaskKey>();
14 HashMap<Task.TaskKey, Integer> mTaskKeyIndices = new HashMap<Task.TaskKey, Integer>();
47 public Task.TaskKey getNextTaskInGroup(Task t) {
56 public Task.TaskKey getPrevTaskInGroup(Task t) {
101 Task.TaskKey k = mTaskKeys.get(i);
TaskStack.java 48 HashMap<Task.TaskKey, Integer> mTaskIndices = new HashMap<Task.TaskKey, Integer>();
295 public ArrayList<Task.TaskKey> getTaskKeys() {
296 ArrayList<Task.TaskKey> taskKeys = new ArrayList<Task.TaskKey>();
391 HashMap<Task.TaskKey, Task> taskMap = new HashMap<Task.TaskKey, Task>();
440 Collections.sort(group.mTaskKeys, new Comparator<Task.TaskKey>() {
442 public int compare(Task.TaskKey taskKey, Task.TaskKey taskKey2)
    [all...]
Task.java 71 public static class TaskKey {
80 public TaskKey(int id, int stackId, Intent intent, int userId, long firstActiveTime,
98 if (!(o instanceof TaskKey)) {
101 TaskKey otherKey = (TaskKey) o;
120 public TaskKey key;
143 public Task(TaskKey key, boolean isActive, int taskAffiliation, int taskAffiliationColor,
RecentsPackageMonitor.java 95 public HashSet<ComponentName> computeComponentsRemoved(List<Task.TaskKey> taskKeys,
101 for (Task.TaskKey t : taskKeys) {
RecentsTaskLoadPlan.java 112 Task.TaskKey taskKey = new Task.TaskKey(t.persistentId, t.stackId, t.baseIntent,
116 Task.ComponentNameKey cnKey = taskKey.getComponentNameKey();
127 String activityLabel = loader.getAndUpdateActivityLabel(taskKey, t.taskDescription,
129 String contentDescription = loader.getAndUpdateContentDescription(taskKey,
131 Drawable activityIcon = loader.getAndUpdateActivityIcon(taskKey, t.taskDescription,
148 Task task = new Task(taskKey, (t.id != RecentsTaskLoader.INVALID_TASK_ID),
152 task.thumbnail = loader.getAndUpdateThumbnail(taskKey, mSystemServicesProxy, false);
153 if (DEBUG) Log.d(TAG, "\tthumbnail: " + taskKey + ", " + task.thumbnail)
    [all...]
RecentsTaskLoader.java 238 Drawable getTaskDescriptionIcon(Task.TaskKey taskKey, Bitmap iconBitmap, String iconFilename,
244 return ssp.getBadgedIcon(new BitmapDrawable(res, tdIcon), taskKey.userId);
326 public String getAndUpdateActivityLabel(Task.TaskKey taskKey,
334 String label = mActivityLabelCache.getAndInvalidateIfModified(taskKey);
340 infoHandle.info = ssp.getActivityInfo(taskKey.baseIntent.getComponent(),
341 taskKey.userId);
345 mActivityLabelCache.put(taskKey, label);
348 Log.w(TAG, "Missing ActivityInfo for " + taskKey.baseIntent.getComponent(
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskStackViewLayoutAlgorithm.java 65 HashMap<Task.TaskKey, Float> mTaskProgressMap = new HashMap<Task.TaskKey, Float>();
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
Recents.java 422 Task.TaskKey toTaskKey;
    [all...]

Completed in 3192 milliseconds