Searched defs:targetIntent (Results 1 - 3 of 3) sorted by relevance

/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/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 83 milliseconds