Home
last modified time | relevance | path

Searched refs:targetIntent (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/tests/SmokeTest/src/com/android/smoketest/
DSmokeTestActivity.java35 Intent targetIntent = new Intent(Intent.ACTION_MAIN, null); in getTargetIntent() local
37 targetIntent.addCategory("android.intent.category.SMOKETEST_INSTRUMENTATION_TEST"); in getTargetIntent()
38 targetIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); in getTargetIntent()
39 return targetIntent; in getTargetIntent()
/frameworks/support/v4/java/android/support/v4/app/
DNavUtils.java44 boolean shouldUpRecreateTask(Activity activity, Intent targetIntent); in shouldUpRecreateTask() argument
72 public boolean shouldUpRecreateTask(Activity activity, Intent targetIntent) { in shouldUpRecreateTask() argument
114 public boolean shouldUpRecreateTask(Activity activity, Intent targetIntent) { in shouldUpRecreateTask() argument
115 return NavUtilsJB.shouldUpRecreateTask(activity, targetIntent); in shouldUpRecreateTask()
158 public static boolean shouldUpRecreateTask(Activity sourceActivity, Intent targetIntent) { in shouldUpRecreateTask() argument
159 return IMPL.shouldUpRecreateTask(sourceActivity, targetIntent); in shouldUpRecreateTask()
/frameworks/support/v4/jellybean/android/support/v4/app/
DNavUtilsJB.java28 public static boolean shouldUpRecreateTask(Activity activity, Intent targetIntent) { in shouldUpRecreateTask() argument
29 return activity.shouldUpRecreateTask(targetIntent); in shouldUpRecreateTask()
/frameworks/support/v7/appcompat/src/android/support/v7/app/
DActionBarActivity.java479 public boolean supportShouldUpRecreateTask(Intent targetIntent) { in supportShouldUpRecreateTask() argument
480 return NavUtils.shouldUpRecreateTask(this, targetIntent); in supportShouldUpRecreateTask()
/frameworks/base/services/core/java/com/android/server/am/
DTaskRecord.java315 Intent targetIntent = new Intent(_intent); in setIntent() local
316 targetIntent.setComponent(targetComponent); in setIntent()
317 targetIntent.setSelector(null); in setIntent()
318 targetIntent.setSourceBounds(null); in setIntent()
320 "Setting Intent of " + this + " to target " + targetIntent); in setIntent()
321 intent = targetIntent; in setIntent()
/frameworks/base/core/java/android/app/
DActivity.java5733 public boolean shouldUpRecreateTask(Intent targetIntent) { in shouldUpRecreateTask() argument
5736 ComponentName cn = targetIntent.getComponent(); in shouldUpRecreateTask()
5738 cn = targetIntent.resolveActivity(pm); in shouldUpRecreateTask()