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

/frameworks/support/core-utils/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/core-utils/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.java441 * by using targetIntent.
448 * @param targetIntent An intent representing the target destination for up navigation
452 public boolean supportShouldUpRecreateTask(@NonNull Intent targetIntent) { argument
453 return NavUtils.shouldUpRecreateTask(this, targetIntent);
/frameworks/base/core/java/android/app/
H A DActivity.java6396 * by using targetIntent.
6403 * @param targetIntent An intent representing the target destination for up navigation
6407 public boolean shouldUpRecreateTask(Intent targetIntent) { argument
6410 ComponentName cn = targetIntent.getComponent();
6412 cn = targetIntent.resolveActivity(pm);

Completed in 140 milliseconds