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.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/services/core/java/com/android/server/am/
H A DTaskRecord.java350 Intent targetIntent = new Intent(_intent);
351 targetIntent.setComponent(targetComponent);
352 targetIntent.setSelector(null);
353 targetIntent.setSourceBounds(null);
355 "Setting Intent of " + this + " to target " + targetIntent);
356 intent = targetIntent;
/frameworks/base/core/java/com/android/internal/app/
H A DChooserActivity.java466 final Intent targetIntent = targetIntents.get(i);
467 if (targetIntent.filterEquals(matchingIntent)) {
/frameworks/base/core/java/android/app/
H A DActivity.java5969 * by using targetIntent.
5976 * @param targetIntent An intent representing the target destination for up navigation
5980 public boolean shouldUpRecreateTask(Intent targetIntent) { argument
5983 ComponentName cn = targetIntent.getComponent();
5985 cn = targetIntent.resolveActivity(pm);

Completed in 895 milliseconds