OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WidgetListRowEntry
(Results
1 - 10
of
10
) sorted by null
/packages/apps/Launcher3/src/com/android/launcher3/widget/
WidgetListRowEntry.java
27
public class
WidgetListRowEntry
{
39
public
WidgetListRowEntry
(PackageItemInfo pkgItem, ArrayList<WidgetItem> items) {
WidgetsDiffReporter.java
45
public void process(ArrayList<
WidgetListRowEntry
> currentEntries,
46
ArrayList<
WidgetListRowEntry
> newEntries, WidgetListRowEntryComparator comparator) {
64
ArrayList<
WidgetListRowEntry
> orgEntries =
65
(ArrayList<
WidgetListRowEntry
>) currentEntries.clone();
66
Iterator<
WidgetListRowEntry
> orgIter = orgEntries.iterator();
67
Iterator<
WidgetListRowEntry
> newIter = newEntries.iterator();
69
WidgetListRowEntry
orgRowEntry = orgIter.next();
70
WidgetListRowEntry
newRowEntry = newIter.next();
124
private int comparePackageName(
WidgetListRowEntry
curRow,
WidgetListRowEntry
newRow
[
all
...]
WidgetsListAdapter.java
60
private ArrayList<
WidgetListRowEntry
> mEntries = new ArrayList<>();
99
public void setWidgets(ArrayList<
WidgetListRowEntry
> tempEntries) {
116
WidgetListRowEntry
entry = mEntries.get(pos);
209
* Comparator for sorting
WidgetListRowEntry
based on package title
211
public static class WidgetListRowEntryComparator implements Comparator<
WidgetListRowEntry
> {
216
public int compare(
WidgetListRowEntry
a,
WidgetListRowEntry
b) {
/packages/apps/Launcher3/src/com/android/launcher3/model/
WidgetsModel.java
29
import com.android.launcher3.widget.
WidgetListRowEntry
;
53
* Returns a list of {@link
WidgetListRowEntry
}. All {@link WidgetItem} in a single row
54
* are sorted (based on label and user), but the overall list of {@link
WidgetListRowEntry
}s
60
public synchronized ArrayList<
WidgetListRowEntry
> getWidgetsList(Context context) {
61
ArrayList<
WidgetListRowEntry
> result = new ArrayList<>();
66
WidgetListRowEntry
row = new
WidgetListRowEntry
(entry.getKey(), entry.getValue());
BaseModelUpdateTask.java
31
import com.android.launcher3.widget.
WidgetListRowEntry
;
120
final ArrayList<
WidgetListRowEntry
> widgets =
LoaderResults.java
38
import com.android.launcher3.widget.
WidgetListRowEntry
;
366
final ArrayList<
WidgetListRowEntry
> widgets =
/packages/apps/Launcher3/src/com/android/launcher3/popup/
PopupDataProvider.java
35
import com.android.launcher3.widget.
WidgetListRowEntry
;
66
private ArrayList<
WidgetListRowEntry
> mAllWidgets = new ArrayList<>();
212
public void setAllWidgets(ArrayList<
WidgetListRowEntry
> allWidgets) {
216
public ArrayList<
WidgetListRowEntry
> getAllWidgets() {
221
for (
WidgetListRowEntry
entry : mAllWidgets) {
/packages/apps/Launcher3/tests/src/com/android/launcher3/widget/
WidgetsListAdapterTest.java
126
private ArrayList<
WidgetListRowEntry
> generateSampleMap(int num) {
127
ArrayList<
WidgetListRowEntry
> result = new ArrayList<>();
147
result.add(new
WidgetListRowEntry
(entry.getKey(), entry.getValue()));
/packages/apps/Launcher3/src/com/android/launcher3/
LauncherModel.java
65
import com.android.launcher3.widget.
WidgetListRowEntry
;
158
public void bindAllWidgets(ArrayList<
WidgetListRowEntry
> widgets);
Launcher.java
131
import com.android.launcher3.widget.
WidgetListRowEntry
;
[
all
...]
Completed in 166 milliseconds