HomeSort by relevance Sort by last modified time
    Searched refs:mainIntent (Results 1 - 13 of 13) 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 173 final Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
174 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
175 mainIntent.setPackage(packageName);
177 final List<ResolveInfo> apps = packageManager.queryIntentActivities(mainIntent, 0);
LauncherModel.java     [all...]
Launcher.java     [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
TestListAdapter.java 159 Intent mainIntent = new Intent(Intent.ACTION_MAIN);
160 mainIntent.addCategory(CATEGORY_MANUAL_TEST);
163 List<ResolveInfo> list = packageManager.queryIntentActivities(mainIntent,
  /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 461 milliseconds