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

  /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);
Grid3.java 61 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
62 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
64 mApps = getPackageManager().queryIntentActivities(mainIntent, 0);
  /packages/apps/Launcher3/src/com/android/launcher3/compat/
LauncherAppsCompatV16.java 58 final Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
59 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
60 mainIntent.setPackage(packageName);
61 List<ResolveInfo> infos = mPm.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);
  /development/samples/Support13Demos/src/com/example/android/supportv13/
Support13Demos.java 58 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
59 mainIntent.addCategory("com.example.android.supportv13.SUPPORT13_SAMPLE_CODE");
62 List<ResolveInfo> list = pm.queryIntentActivities(mainIntent, 0);
  /development/samples/Support4Demos/src/com/example/android/supportv4/
Support4Demos.java 58 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
59 mainIntent.addCategory("com.example.android.supportv4.SUPPORT4_SAMPLE_CODE");
62 List<ResolveInfo> list = pm.queryIntentActivities(mainIntent, 0);
  /development/samples/Support7Demos/src/com/example/android/supportv7/
Support7Demos.java 58 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
59 mainIntent.addCategory("com.example.android.supportv7.SAMPLE_CODE");
62 List<ResolveInfo> list = pm.queryIntentActivities(mainIntent, 0);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
HwTests.java 61 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
62 mainIntent.addCategory(CATEGORY_HWUI_TEST);
65 List<ResolveInfo> list = pm.queryIntentActivities(mainIntent, 0);
  /frameworks/base/tests/VectorDrawableTest/src/com/android/test/dynamic/
VectorDrawableTest.java 60 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
61 mainIntent.addCategory(CATEGORY_HWUI_TEST);
64 List<ResolveInfo> list = pm.queryIntentActivities(mainIntent, 0);
  /pdk/apps/HelloPDK/src/com/example/android/helloPDK/
MainActivity.java 61 Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
62 mainIntent.addCategory(Intent.CATEGORY_SAMPLE_CODE);
65 List<ResolveInfo> list = pm.queryIntentActivities(mainIntent, 0);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
ManifestTestListAdapter.java 155 Intent mainIntent = new Intent(Intent.ACTION_MAIN);
156 mainIntent.addCategory(CATEGORY_MANUAL_TEST);
159 List<ResolveInfo> list = packageManager.queryIntentActivities(mainIntent,
  /frameworks/base/services/core/java/com/android/server/pm/
LauncherAppsService.java 197 final Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
198 mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
199 mainIntent.setPackage(packageName);
202 List<ResolveInfo> apps = mPm.queryIntentActivitiesAsUser(mainIntent, 0 /* flags */,
  /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);
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherModel.java     [all...]
Launcher.java     [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherModel.java     [all...]

Completed in 686 milliseconds