Lines Matching full:mapps
191 private ArrayList<ApplicationInfo> mApps;
236 mApps = new ArrayList<ApplicationInfo>();
303 int numApps = mApps.size();
329 if (index < mApps.size()) {
334 return mNumAppsPages + ((index - mApps.size()) / numItemsPerPage);
345 return !mApps.isEmpty() && !mWidgets.isEmpty();
357 mNumAppsPages = (int) Math.ceil((float) mApps.size() / (mCellCountX * mCellCountY));
752 int endIndex = Math.min(startIndex + numCells, mApps.size());
759 ApplicationInfo info = mApps.get(i);
1426 mApps = list;
1427 Collections.sort(mApps, LauncherModel.APP_NAME_COMPARATOR);
1439 int index = Collections.binarySearch(mApps, info, LauncherModel.APP_NAME_COMPARATOR);
1441 mApps.add(-(index + 1), info);
1467 int removeIndex = findAppByComponent(mApps, info);
1469 mApps.remove(removeIndex);
1512 ApplicationInfo.dumpApplicationInfoList(LOG_TAG, "mApps", mApps);