HomeSort by relevance Sort by last modified time
    Searched full:targetintent (Results 1 - 6 of 6) sorted by null

  /development/apps/Development/src/com/android/development/
Development.java 26 Intent targetIntent = new Intent(Intent.ACTION_MAIN, null);
27 targetIntent.addCategory(Intent.CATEGORY_TEST);
28 targetIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
29 return targetIntent;
UnderdevelopedSettings.java 26 Intent targetIntent = new Intent(Intent.ACTION_MAIN, null);
27 targetIntent.addCategory(Intent.CATEGORY_DEVELOPMENT_PREFERENCE);
28 return targetIntent;
  /cts/tests/src/android/app/cts/
LauncherActivityStub.java 38 Intent targetIntent = new Intent(Intent.ACTION_MAIN, null);
39 targetIntent.addCategory(Intent.CATEGORY_FRAMEWORK_INSTRUMENTATION_TEST);
40 targetIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
41 return targetIntent;
  /frameworks/base/tests/SmokeTest/src/com/android/smoketest/
SmokeTestActivity.java 35 Intent targetIntent = new Intent(Intent.ACTION_MAIN, null);
37 targetIntent.addCategory("android.intent.category.SMOKETEST_INSTRUMENTATION_TEST");
38 targetIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
39 return targetIntent;
  /packages/apps/Settings/src/com/android/settings/
CreateShortcut.java 29 Intent targetIntent = new Intent(Intent.ACTION_MAIN, null);
30 targetIntent.addCategory("com.android.settings.SHORTCUT");
31 targetIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
32 return targetIntent;
  /frameworks/base/services/java/com/android/server/am/
TaskRecord.java 75 Intent targetIntent = new Intent(_intent);
76 targetIntent.setComponent(targetComponent);
77 targetIntent.setSelector(null);
78 intent = targetIntent;

Completed in 804 milliseconds