Searched defs:targetIntent (Results 1 - 4 of 4) 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.java44 boolean shouldUpRecreateTask(Activity activity, Intent targetIntent); argument
72 public boolean shouldUpRecreateTask(Activity activity, Intent targetIntent) { argument
114 public boolean shouldUpRecreateTask(Activity activity, Intent targetIntent) { argument
115 return NavUtilsJB.shouldUpRecreateTask(activity, targetIntent);
146 * by using targetIntent.
154 * @param targetIntent An intent representing the target destination for up navigation
158 public static boolean shouldUpRecreateTask(Activity sourceActivity, Intent targetIntent) { argument
159 return IMPL.shouldUpRecreateTask(sourceActivity, targetIntent);
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DAppCompatActivity.java379 * by using targetIntent.
386 * @param targetIntent An intent representing the target destination for up navigation
390 public boolean supportShouldUpRecreateTask(Intent targetIntent) { argument
391 return NavUtils.shouldUpRecreateTask(this, targetIntent);
/frameworks/base/core/java/android/app/
H A DActivity.java5982 * by using targetIntent.
5989 * @param targetIntent An intent representing the target destination for up navigation
5993 public boolean shouldUpRecreateTask(Intent targetIntent) { argument
5996 ComponentName cn = targetIntent.getComponent();
5998 cn = targetIntent.resolveActivity(pm);

Completed in 169 milliseconds