Searched refs:mApps (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/hdp/
H A DHealthService.java62 private Map <BluetoothHealthAppConfiguration, AppInfo> mApps; field in class:HealthService
87 mApps = Collections.synchronizedMap(new HashMap<BluetoothHealthAppConfiguration,
111 for (Entry<BluetoothHealthAppConfiguration, AppInfo> entry : mApps.entrySet()) {
115 mApps.remove(entry.getKey());
134 if(mApps != null) {
135 mApps.clear();
152 AppInfo appInfo = mApps.get(appConfig);
165 mApps.remove(appConfig);
185 int appId = (mApps.get(appConfig)).mAppId;
197 int appId = (mApps
[all...]
/packages/apps/Launcher2/src/com/android/launcher2/
H A DAppsCustomizePagedView.java256 private ArrayList<ApplicationInfo> mApps; field in class:AppsCustomizePagedView
330 mApps = new ArrayList<ApplicationInfo>();
389 int numApps = mApps.size();
415 if (index < mApps.size()) {
420 return mNumAppsPages + ((index - mApps.size()) / numItemsPerPage);
433 mNumAppsPages = (int) Math.ceil((float) mApps.size() / (mCellCountX * mCellCountY));
515 if (!mApps.isEmpty() && !mWidgets.isEmpty()) {
1077 int endIndex = Math.min(startIndex + numCells, mApps.size());
1084 ApplicationInfo info = mApps.get(i);
1711 * We should call thise method whenever the core data changes (mApps, mWidget
[all...]

Completed in 204 milliseconds