Lines Matching defs:AppItem

264     private AppItem mCurrentApp = null;
480 AppItem app = new AppItem(uid);
1351 final AppItem app = (AppItem) parent.getItemAtPosition(position);
1669 public static class AppItem implements Comparable<AppItem>, Parcelable {
1681 public AppItem() {
1685 public AppItem(int key) {
1689 public AppItem(Parcel parcel) {
1712 public int compareTo(AppItem another) {
1720 public static final Creator<AppItem> CREATOR = new Creator<AppItem>() {
1722 public AppItem createFromParcel(Parcel in) {
1723 return new AppItem(in);
1727 public AppItem[] newArray(int size) {
1728 return new AppItem[size];
1741 private ArrayList<AppItem> mItems = Lists.newArrayList();
1759 final SparseArray<AppItem> knownItems = new SparseArray<AppItem>();
1778 AppItem.CATEGORY_USER);
1782 category = AppItem.CATEGORY_APP;
1788 category = AppItem.CATEGORY_APP;
1792 category = AppItem.CATEGORY_USER;
1797 category = AppItem.CATEGORY_APP;
1800 category = AppItem.CATEGORY_APP;
1813 AppItem item = knownItems.get(uid);
1815 item = new AppItem(uid);
1824 final AppItem title = new AppItem();
1825 title.category = AppItem.CATEGORY_APP_TITLE;
1841 * either AppItem.APP_ITEM_CATEGORY or AppItem.MANAGED_USER_ITEM_CATEGORY
1843 private void accumulate(int collapseKey, final SparseArray<AppItem> knownItems,
1846 AppItem item = knownItems.get(collapseKey);
1848 item = new AppItem(collapseKey);
1888 final AppItem item = mItems.get(position);
1889 if (item.category == AppItem.CATEGORY_APP_TITLE) {
1911 final AppItem item = mItems.get(position);
1964 public static void show(DataUsageSummary parent, AppItem app, CharSequence label) {
1968 public static void show(DataUsageSummary parent, AppItem app, CharSequence label,
2443 private final AppItem mItem;
2446 private UidDetailTask(UidDetailProvider provider, AppItem item, View target) {
2453 UidDetailProvider provider, AppItem item, View target) {