Searched defs:td (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DRecentTasksLoader.java142 public void remove(TaskDescription td) { argument
143 mLoadedTasks.remove(td);
198 void loadThumbnailAndIcon(TaskDescription td) { argument
202 final Bitmap thumbnail = SystemServicesProxy.getThumbnail(am, td.persistentTaskId);
203 Drawable icon = getFullResIcon(td.resolveInfo, pm);
204 if (td.userId != UserHandle.myUserId()) {
206 icon = mContext.getPackageManager().getUserBadgedIcon(icon, new UserHandle(td.userId));
209 + td + ": " + thumbnail);
210 synchronized (td) {
212 td
[all...]
H A DRecentsPanelView.java175 final TaskDescription td = mRecentTaskDescriptions.get(index);
177 holder.labelView.setText(td.getLabel());
178 holder.thumbnailView.setContentDescription(td.getLabel());
179 holder.loadedThumbnailAndIcon = td.isLoaded();
180 if (td.isLoaded()) {
181 updateThumbnail(holder, td.getThumbnail(), true, false);
182 updateIcon(holder, td.getIcon(), true, false);
224 holder.thumbnailView.setTag(td);
226 holder.taskDescription = td;
517 void onTaskThumbnailLoaded(TaskDescription td) { argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
H A DRecentsTaskLoader.java338 ActivityManager.TaskDescription td, SystemServicesProxy ssp,
341 if (td != null && td.getLabel() != null) {
342 return td.getLabel();
366 ActivityManager.TaskDescription td, SystemServicesProxy ssp,
376 Drawable tdDrawable = mLoader.getTaskDescriptionIcon(taskKey, td.getInMemoryIcon(),
377 td.getIconFilename(), ssp, res);
423 public int getActivityPrimaryColor(ActivityManager.TaskDescription td, argument
425 if (td != null && td
337 getAndUpdateActivityLabel(Task.TaskKey taskKey, ActivityManager.TaskDescription td, SystemServicesProxy ssp, ActivityInfoHandle infoHandle) argument
365 getAndUpdateActivityIcon(Task.TaskKey taskKey, ActivityManager.TaskDescription td, SystemServicesProxy ssp, Resources res, ActivityInfoHandle infoHandle, boolean loadIfNotCached) argument
[all...]
/frameworks/base/core/java/android/app/
H A DActivityManager.java586 public TaskDescription(TaskDescription td) { argument
587 mLabel = td.mLabel;
588 mIcon = td.mIcon;
589 mColorPrimary = td.mColorPrimary;
590 mIconFilename = td.mIconFilename;
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java8332 public void setTaskDescription(IBinder token, ActivityManager.TaskDescription td) { argument
8336 r.setTaskDescription(td);

Completed in 6068 milliseconds