HomeSort by relevance Sort by last modified time
    Searched refs:mApps (Results 1 - 14 of 14) sorted by null

  /development/samples/ApiDemos/src/com/example/android/apis/view/
LayoutAnimation1.java 45 private List<ResolveInfo> mApps;
51 mApps = getPackageManager().queryIntentActivities(mainIntent, 0);
58 ResolveInfo info = mApps.get(position % mApps.size());
69 return Math.min(32, mApps.size());
73 return mApps.get(position % mApps.size());
LayoutAnimation4.java 46 private List<ResolveInfo> mApps;
52 mApps = getPackageManager().queryIntentActivities(mainIntent, 0);
59 ResolveInfo info = mApps.get(position % mApps.size());
70 return Math.min(32, mApps.size());
74 return mApps.get(position % mApps.size());
LayoutAnimation5.java 45 private List<ResolveInfo> mApps;
51 mApps = getPackageManager().queryIntentActivities(mainIntent, 0);
58 ResolveInfo info = mApps.get(position % mApps.size());
69 return Math.min(32, mApps.size());
73 return mApps.get(position % mApps.size());
LayoutAnimation6.java 45 private List<ResolveInfo> mApps;
51 mApps = getPackageManager().queryIntentActivities(mainIntent, 0);
58 ResolveInfo info = mApps.get(position % mApps.size());
69 return Math.min(32, mApps.size());
73 return mApps.get(position % mApps.size());
Grid1.java 51 private List<ResolveInfo> mApps;
57 mApps = getPackageManager().queryIntentActivities(mainIntent, 0);
75 ResolveInfo info = mApps.get(position);
83 return mApps.size();
87 return mApps.get(position);
Grid3.java 58 private List<ResolveInfo> mApps;
64 mApps = getPackageManager().queryIntentActivities(mainIntent, 0);
88 ResolveInfo info = mApps.get(position);
96 return mApps.size();
100 return mApps.get(position);
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
ContextMap.java 107 List<App> mApps = new ArrayList<App>();
116 synchronized (mApps) {
117 mApps.add(new App(uuid, callback));
125 synchronized (mApps) {
126 Iterator<App> i = mApps.iterator();
170 Iterator<App> i = mApps.iterator();
183 Iterator<App> i = mApps.iterator();
262 synchronized (mApps) {
263 Iterator<App> i = mApps.iterator();
282 b.append("\nEntries: " + mApps.size())
    [all...]
  /packages/apps/Settings/src/com/android/settings/applications/
AppOpsCategory.java 121 List<AppOpEntry> mApps;
148 mApps = apps;
172 if (mApps != null) {
175 deliverResult(mApps);
187 if (takeContentChanged() || mApps == null || configChange) {
224 if (mApps != null) {
225 onReleaseResources(mApps);
226 mApps = null;
AppOpsState.java 53 List<AppOpEntry> mApps;
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LoaderCustom.java 213 List<AppEntry> mApps;
270 mApps = apps;
290 if (mApps != null) {
293 deliverResult(mApps);
305 if (takeContentChanged() || mApps == null || configChange) {
342 if (mApps != null) {
343 onReleaseResources(mApps);
344 mApps = null;
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
LoaderCustomSupport.java 215 List<AppEntry> mApps;
272 mApps = apps;
292 if (mApps != null) {
295 deliverResult(mApps);
307 if (takeContentChanged() || mApps == null || configChange) {
344 if (mApps != null) {
345 onReleaseResources(mApps);
346 mApps = null;
  /packages/apps/Bluetooth/src/com/android/bluetooth/hdp/
HealthService.java 64 private Map <BluetoothHealthAppConfiguration, AppInfo> mApps;
89 mApps = Collections.synchronizedMap(new HashMap<BluetoothHealthAppConfiguration,
114 = mApps.entrySet().iterator();
137 if(mApps != null) {
138 mApps.clear();
156 AppInfo appInfo = mApps.get(appConfig);
169 mApps.remove(appConfig);
189 int appId = (mApps.get(appConfig)).mAppId;
201 int appId = (mApps.get(chan.mConfig)).mAppId;
240 AppInfo appInfo = mApps.get(appConfig)
    [all...]
  /frameworks/base/core/java/android/nfc/
NfcActivityManager.java 47 final List<NfcApplicationState> mApps; // Application(s) that have NFC state. Usually one
76 for (NfcApplicationState appState : mApps) {
88 mApps.add(appState);
189 mApps = new ArrayList<NfcApplicationState>(1); // Android VM usually has 1 app
  /packages/apps/Launcher2/src/com/android/launcher2/
AppsCustomizePagedView.java 173 private ArrayList<ApplicationInfo> mApps;
250 mApps = new ArrayList<ApplicationInfo>();
306 int numApps = mApps.size();
332 if (index < mApps.size()) {
337 return mNumAppsPages + ((index - mApps.size()) / numItemsPerPage);
350 mNumAppsPages = (int) Math.ceil((float) mApps.size() / (mCellCountX * mCellCountY));
436 if (!mApps.isEmpty() && !mWidgets.isEmpty()) {
    [all...]

Completed in 578 milliseconds