Home | History | Annotate | Download | only in launcher3

Lines Matching defs:mApps

170     private ArrayList<AppInfo> mApps;
218 mApps = new ArrayList<AppInfo>();
290 int numApps = mApps.size();
318 if (index < mApps.size()) {
323 return (index - mApps.size()) / numItemsPerPage;
336 mNumAppsPages = (int) Math.ceil((float) mApps.size() / (mCellCountX * mCellCountY));
364 if ((LauncherAppState.isDisableAllApps() || !mApps.isEmpty()) && !mWidgets.isEmpty()) {
955 int endIndex = Math.min(startIndex + numCells, mApps.size());
962 AppInfo info = mApps.get(i);
1401 * We should call thise method whenever the core data changes (mApps, mWidgets) so that we can
1419 mApps = list;
1420 Collections.sort(mApps, LauncherModel.getAppNameComparator());
1429 int index = Collections.binarySearch(mApps, info, LauncherModel.getAppNameComparator());
1431 mApps.add(-(index + 1), info);
1458 int removeIndex = findAppByComponent(mApps, info);
1460 mApps.remove(removeIndex);
1500 AppInfo.dumpApplicationInfoList(TAG, "mApps", mApps);