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

  /cts/tests/ApiDemosReferenceTest/src/android/apidemos/cts/
ApiDemosTest.java 70 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
71 mainIntent.addCategory(Intent.CATEGORY_SAMPLE_CODE);
74 List<ResolveInfo> list = pm.queryIntentActivities(mainIntent, 0);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
Grid1.java 54 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
55 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
57 mApps = getPackageManager().queryIntentActivities(mainIntent, 0);
LayoutAnimation1.java 48 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
49 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
51 mApps = getPackageManager().queryIntentActivities(mainIntent, 0);
LayoutAnimation4.java 49 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
50 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
52 mApps = getPackageManager().queryIntentActivities(mainIntent, 0);
LayoutAnimation5.java 48 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
49 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
51 mApps = getPackageManager().queryIntentActivities(mainIntent, 0);
LayoutAnimation6.java 48 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
49 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
51 mApps = getPackageManager().queryIntentActivities(mainIntent, 0);
  /development/samples/ApiDemos/src/com/example/android/apis/
ApiDemos.java 58 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
59 mainIntent.addCategory(Intent.CATEGORY_SAMPLE_CODE);
62 List<ResolveInfo> list = pm.queryIntentActivities(mainIntent, 0);
  /packages/apps/Launcher2/src/com/android/launcher2/
AllAppsList.java 162 final Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
163 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
165 final List<ResolveInfo> apps = packageManager.queryIntentActivities(mainIntent, 0);
LauncherModel.java     [all...]
Launcher.java     [all...]
  /packages/providers/ApplicationsProvider/src/com/android/providers/applications/
ApplicationsProvider.java 430 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
431 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
434 mainIntent.setPackage(packageName);
437 List<ResolveInfo> activities = manager.queryIntentActivities(mainIntent, 0);
  /development/samples/Home/src/com/example/android/home/
Home.java 486 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
487 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
489 final List<ResolveInfo> apps = manager.queryIntentActivities(mainIntent, 0);

Completed in 331 milliseconds