Home
last modified time | relevance | path

Searched refs:recentApps (Results 1 – 11 of 11) sorted by relevance

/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/apps/
DRecentAppsPreferenceController.java120 final List<UsageStats> recentApps = getDisplayableRecentAppList(); in refreshUi() local
121 if (recentApps != null && !recentApps.isEmpty()) { in refreshUi()
122 displayRecentApps(prefContext, recentApps); in refreshUi()
139 private void displayRecentApps(Context prefContext, List<UsageStats> recentApps) { in displayRecentApps() argument
153 final int recentAppsCount = recentApps.size(); in displayRecentApps()
155 final UsageStats stat = recentApps.get(i); in displayRecentApps()
210 final List<UsageStats> recentApps = new ArrayList<>(); in getDisplayableRecentAppList() local
236 recentApps.add(stat); in getDisplayableRecentAppList()
242 return recentApps; in getDisplayableRecentAppList()
/packages/apps/Settings/src/com/android/settings/notification/
DRecentNotifyingAppsPreferenceController.java156 final List<NotifyingApp> recentApps = getDisplayableRecentAppList(); in refreshUi() local
157 if (recentApps != null && !recentApps.isEmpty()) { in refreshUi()
158 displayRecentApps(prefContext, recentApps); in refreshUi()
224 private void displayRecentApps(Context prefContext, List<NotifyingApp> recentApps) { in displayRecentApps() argument
241 final int recentAppsCount = recentApps.size(); in displayRecentApps()
243 final NotifyingApp app = recentApps.get(i); in displayRecentApps()
/packages/apps/Settings/src/com/android/settings/applications/
DAllAppsInfoPreferenceController.java56 public void onReloadDataCompleted(@NonNull List<UsageStats> recentApps) { in onReloadDataCompleted() argument
58 if (!recentApps.isEmpty()) { in onReloadDataCompleted()
DAppAndNotificationDashboardFragment.java107 public void onReloadDataCompleted(@NonNull List<UsageStats> recentApps) { in onReloadDataCompleted() argument
109 if (!recentApps.isEmpty()) { in onReloadDataCompleted()
DRecentAppsPreferenceController.java109 public void onReloadDataCompleted(@NonNull List<UsageStats> recentApps) { in onReloadDataCompleted() argument
110 mRecentApps = recentApps; in onReloadDataCompleted()
DRecentAppStatsMixin.java192 void onReloadDataCompleted(List<UsageStats> recentApps); in onReloadDataCompleted() argument
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/applications/
DAllAppsInfoPreferenceController.java56 public void onReloadDataCompleted(@NonNull List<UsageStats> recentApps) { in onReloadDataCompleted() argument
58 if (!recentApps.isEmpty()) { in onReloadDataCompleted()
DAppAndNotificationDashboardFragment.java107 public void onReloadDataCompleted(@NonNull List<UsageStats> recentApps) { in onReloadDataCompleted() argument
109 if (!recentApps.isEmpty()) { in onReloadDataCompleted()
DRecentAppsPreferenceController.java109 public void onReloadDataCompleted(@NonNull List<UsageStats> recentApps) { in onReloadDataCompleted() argument
110 mRecentApps = recentApps; in onReloadDataCompleted()
DRecentAppStatsMixin.java192 void onReloadDataCompleted(List<UsageStats> recentApps); in onReloadDataCompleted() argument
/packages/apps/Settings/src/com/android/settings/location/
DRecentLocationRequestPreferenceController.java80 Lifecycle lifecycle, RecentLocationApps recentApps) { in RecentLocationRequestPreferenceController() argument
83 mRecentLocationApps = recentApps; in RecentLocationRequestPreferenceController()