Home
last modified time | relevance | path

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

/packages/apps/Launcher3/src/com/android/launcher3/widget/
DWidgetsDiffReporter.java46 public void process(ArrayList<WidgetListRowEntry> currentEntries, in process()
47 ArrayList<WidgetListRowEntry> newEntries, WidgetListRowEntryComparator comparator) { in process()
65 ArrayList<WidgetListRowEntry> orgEntries = in process()
66 (ArrayList<WidgetListRowEntry>) currentEntries.clone(); in process()
67 Iterator<WidgetListRowEntry> orgIter = orgEntries.iterator(); in process()
68 Iterator<WidgetListRowEntry> newIter = newEntries.iterator(); in process()
70 WidgetListRowEntry orgRowEntry = orgIter.next(); in process()
71 WidgetListRowEntry newRowEntry = newIter.next(); in process()
125 private int comparePackageName(WidgetListRowEntry curRow, WidgetListRowEntry newRow, in comparePackageName()
DWidgetsListAdapter.java59 private ArrayList<WidgetListRowEntry> mEntries = new ArrayList<>();
98 public void setWidgets(ArrayList<WidgetListRowEntry> tempEntries) { in setWidgets()
115 WidgetListRowEntry entry = mEntries.get(pos); in onBindViewHolder()
210 public static class WidgetListRowEntryComparator implements Comparator<WidgetListRowEntry> {
215 public int compare(WidgetListRowEntry a, WidgetListRowEntry b) { in compare()
DWidgetListRowEntry.java27 public class WidgetListRowEntry { class
39 public WidgetListRowEntry(PackageItemInfo pkgItem, ArrayList<WidgetItem> items) { in WidgetListRowEntry() method in WidgetListRowEntry
/packages/apps/Launcher3/src_shortcuts_overrides/com/android/launcher3/model/
DWidgetsModel.java29 import com.android.launcher3.widget.WidgetListRowEntry;
65 public synchronized ArrayList<WidgetListRowEntry> getWidgetsList(Context context) { in getWidgetsList()
66 ArrayList<WidgetListRowEntry> result = new ArrayList<>(); in getWidgetsList()
71 WidgetListRowEntry row = new WidgetListRowEntry(entry.getKey(), entry.getValue()); in getWidgetsList()
DLoaderResults.java22 import com.android.launcher3.widget.WidgetListRowEntry;
49 final ArrayList<WidgetListRowEntry> widgets = in bindWidgets()
/packages/apps/Launcher3/src/com/android/launcher3/popup/
DPopupDataProvider.java33 import com.android.launcher3.widget.WidgetListRowEntry;
64 private ArrayList<WidgetListRowEntry> mAllWidgets = new ArrayList<>();
214 public void setAllWidgets(ArrayList<WidgetListRowEntry> allWidgets) { in setAllWidgets()
223 public ArrayList<WidgetListRowEntry> getAllWidgets() { in getAllWidgets()
228 for (WidgetListRowEntry entry : mAllWidgets) { in getWidgetsForPackageUser()
/packages/apps/Launcher3/go/src/com/android/launcher3/model/
DWidgetsModel.java25 import com.android.launcher3.widget.WidgetListRowEntry;
40 private static final ArrayList<WidgetListRowEntry> EMPTY_WIDGET_LIST = new ArrayList<>();
50 public synchronized ArrayList<WidgetListRowEntry> getWidgetsList(Context context) { in getWidgetsList()
/packages/apps/Launcher3/tests/src/com/android/launcher3/widget/
DWidgetsListAdapterTest.java126 private ArrayList<WidgetListRowEntry> generateSampleMap(int num) { in generateSampleMap()
127 ArrayList<WidgetListRowEntry> result = new ArrayList<>(); in generateSampleMap()
146 result.add(new WidgetListRowEntry(entry.getKey(), entry.getValue())); in generateSampleMap()
/packages/apps/Launcher3/src/com/android/launcher3/model/
DBaseModelUpdateTask.java29 import com.android.launcher3.widget.WidgetListRowEntry;
110 final ArrayList<WidgetListRowEntry> widgets = in bindUpdatedWidgets()
DBgDataModel.java47 import com.android.launcher3.widget.WidgetListRowEntry;
420 void bindAllWidgets(ArrayList<WidgetListRowEntry> widgets); in bindAllWidgets()
/packages/apps/Launcher3/src/com/android/launcher3/
DLauncher.java150 import com.android.launcher3.widget.WidgetListRowEntry;
2445 public void bindAllWidgets(final ArrayList<WidgetListRowEntry> allWidgets) { in bindAllWidgets()