Searched refs:targetIntent (Results 1 - 7 of 7) 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/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.java427 * by using targetIntent.
434 * @param targetIntent An intent representing the target destination for up navigation
438 public boolean supportShouldUpRecreateTask(@NonNull Intent targetIntent) { argument
439 return NavUtils.shouldUpRecreateTask(this, targetIntent);
/frameworks/base/core/java/com/android/internal/app/
H A DChooserActivity.java567 final Intent targetIntent = targetIntents.get(i);
568 if (targetIntent.filterEquals(matchingIntent)) {
679 final Intent targetIntent = new Intent(getTargetIntent());
680 targetIntent.setComponent(mChooserTarget.getComponentName());
681 targetIntent.putExtras(mChooserTarget.getIntentExtras());
682 return targetIntent;
/frameworks/base/services/core/java/com/android/server/am/
H A DTaskRecord.java435 Intent targetIntent = new Intent(_intent);
436 targetIntent.setComponent(targetComponent);
437 targetIntent.setSelector(null);
438 targetIntent.setSourceBounds(null);
440 "Setting Intent of " + this + " to target " + targetIntent);
441 intent = targetIntent;
/frameworks/base/core/java/android/app/
H A DActivity.java6378 * by using targetIntent.
6385 * @param targetIntent An intent representing the target destination for up navigation
6389 public boolean shouldUpRecreateTask(Intent targetIntent) { argument
6392 ComponentName cn = targetIntent.getComponent();
6394 cn = targetIntent.resolveActivity(pm);

Completed in 302 milliseconds