OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:targetintent
(Results
1 - 19
of
19
) sorted by null
/development/apps/Development/src/com/android/development/
UnderdevelopedSettings.java
26
Intent
targetIntent
= new Intent(Intent.ACTION_MAIN, null);
27
targetIntent
.addCategory(Intent.CATEGORY_DEVELOPMENT_PREFERENCE);
28
return
targetIntent
;
Development.java
31
Intent
targetIntent
= new Intent(Intent.ACTION_MAIN, null);
32
targetIntent
.addCategory(Intent.CATEGORY_TEST);
33
return
targetIntent
;
/cts/tests/src/android/app/cts/
LauncherActivityStub.java
38
Intent
targetIntent
= new Intent(Intent.ACTION_MAIN, null);
39
targetIntent
.addCategory(Intent.CATEGORY_FRAMEWORK_INSTRUMENTATION_TEST);
40
targetIntent
.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
41
return
targetIntent
;
/frameworks/base/tests/SmokeTest/src/com/android/smoketest/
SmokeTestActivity.java
35
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
;
/packages/apps/Settings/src/com/android/settings/
CreateShortcut.java
29
Intent
targetIntent
= new Intent(Intent.ACTION_MAIN, null);
30
targetIntent
.addCategory("com.android.settings.SHORTCUT");
31
targetIntent
.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
32
return
targetIntent
;
Settings.java
778
public boolean shouldUpRecreateTask(Intent
targetIntent
) {
[
all
...]
/frameworks/support/v4/jellybean/android/support/v4/app/
NavUtilsJB.java
28
public static boolean shouldUpRecreateTask(Activity activity, Intent
targetIntent
) {
29
return activity.shouldUpRecreateTask(
targetIntent
);
/frameworks/base/services/java/com/android/server/am/
TaskRecord.java
80
Intent
targetIntent
= new Intent(_intent);
81
targetIntent
.setComponent(targetComponent);
82
targetIntent
.setSelector(null);
83
targetIntent
.setSourceBounds(null);
85
"Setting Intent of " + this + " to target " +
targetIntent
);
86
intent =
targetIntent
;
/frameworks/support/v4/java/android/support/v4/app/
NavUtils.java
43
boolean shouldUpRecreateTask(Activity activity, Intent
targetIntent
);
71
public boolean shouldUpRecreateTask(Activity activity, Intent
targetIntent
) {
113
public boolean shouldUpRecreateTask(Activity activity, Intent
targetIntent
) {
114
return NavUtilsJB.shouldUpRecreateTask(activity,
targetIntent
);
145
* by using
targetIntent
.
153
* @param
targetIntent
An intent representing the target destination for up navigation
157
public static boolean shouldUpRecreateTask(Activity sourceActivity, Intent
targetIntent
) {
158
return IMPL.shouldUpRecreateTask(sourceActivity,
targetIntent
);
/frameworks/support/v7/appcompat/src/android/support/v7/app/
ActionBarActivity.java
398
* by using
targetIntent
.
405
* @param
targetIntent
An intent representing the target destination for up navigation
409
public boolean supportShouldUpRecreateTask(Intent
targetIntent
) {
410
return NavUtils.shouldUpRecreateTask(this,
targetIntent
);
/frameworks/base/core/java/android/app/
Activity.java
[
all
...]
/development/samples/training/AnimationsDemo/libs/
android-support-v13.jar
/development/samples/training/EffectiveNavigation/libs/
android-support-v4.jar
/development/samples/training/InteractiveChart/libs/
android-support-v4.jar
/development/samples/training/bitmapfun/libs/
android-support-v4.jar
/sdk/apps/NotificationStudio/libs/
android-support-v4.jar
/development/samples/training/basic/FragmentBasics/libs/
android-support-v4.jar
/development/samples/training/location-aware/libs/
android-support-v4.jar
/sdk/testapps/jarCheckTests3/lib2/libs/
android-support-v13.jar
Completed in 1722 milliseconds