Home | History | Annotate | Download | only in allapps

Lines Matching refs:apps

68  * The all apps view container.
133 * Sets the current set of predicted apps.
135 public void setPredictedApps(List<ComponentKey> apps) {
136 mApps.setPredictedApps(apps);
140 * Sets the current set of apps.
142 public void setApps(List<AppInfo> apps) {
143 mApps.setApps(apps);
147 * Adds new apps to the list.
149 public void addApps(List<AppInfo> apps) {
150 mApps.addApps(apps);
155 * Updates existing apps in the list
157 public void updateApps(List<AppInfo> apps) {
158 mApps.updateApps(apps);
163 * Removes some apps from the list.
165 public void removeApps(List<AppInfo> apps) {
166 mApps.removeApps(apps);
273 // Load the all apps recycler view
371 // When we have exited all apps or are in transition, disregard long clicks
431 public void onSearchResult(String query, ArrayList<ComponentKey> apps) {
432 if (apps != null) {
433 mApps.setOrderedFilter(apps);