Searched refs:targetIntent (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/tests/SmokeTest/src/com/android/smoketest/
H A DSmokeTestActivity.java35 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;
/frameworks/support/v4/jellybean/android/support/v4/app/
H A DNavUtilsJB.java28 public static boolean shouldUpRecreateTask(Activity activity, Intent targetIntent) { argument
29 return activity.shouldUpRecreateTask(targetIntent);
/frameworks/base/services/java/com/android/server/am/
H A DTaskRecord.java80 Intent targetIntent = new Intent(_intent);
81 targetIntent.setComponent(targetComponent);
82 targetIntent.setSelector(null);
83 targetIntent.setSourceBounds(null);
85 "Setting Intent of " + this + " to target " + targetIntent);
86 intent = targetIntent;
/frameworks/support/v4/java/android/support/v4/app/
H A DNavUtils.java43 boolean shouldUpRecreateTask(Activity activity, Intent targetIntent); argument
71 public boolean shouldUpRecreateTask(Activity activity, Intent targetIntent) { argument
113 public boolean shouldUpRecreateTask(Activity activity, Intent targetIntent) { argument
114 return NavUtilsJB.shouldUpRecreateTask(activity, targetIntent);
145 * by using targetIntent.
153 * @param targetIntent An intent representing the target destination for up navigation
157 public static boolean shouldUpRecreateTask(Activity sourceActivity, Intent targetIntent) { argument
158 return IMPL.shouldUpRecreateTask(sourceActivity, targetIntent);
/frameworks/base/core/java/android/app/
H A DActivity.java4906 * by using targetIntent.
4913 * @param targetIntent An intent representing the target destination for up navigation
4917 public boolean shouldUpRecreateTask(Intent targetIntent) { argument
4920 ComponentName cn = targetIntent.getComponent();
4922 cn = targetIntent.resolveActivity(pm);

Completed in 106 milliseconds