Searched defs:launchMode (Results 1 - 3 of 3) sorted by relevance

/frameworks/support/navigation/common/src/main/java/androidx/navigation/
H A DNavOptions.java37 private static final String KEY_LAUNCH_MODE = "launchMode";
106 NavOptions(int launchMode, @IdRes int popUpTo, boolean popUpToInclusive, argument
109 mLaunchMode = launchMode;
/frameworks/base/core/java/android/content/pm/
H A DActivityInfo.java51 * the {@link android.R.attr#launchMode} attribute.
56 * the {@link android.R.attr#launchMode} attribute.
61 * the {@link android.R.attr#launchMode} attribute.
66 * the {@link android.R.attr#launchMode} attribute.
71 * {@link android.R.attr#launchMode} attribute, one of
76 public int launchMode; field in class:ActivityInfo
957 launchMode = orig.launchMode;
1107 if (launchMode != 0 || flags != 0 || theme != 0) {
1108 pw.println(prefix + "launchMode
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityRecord.java307 int launchMode; // the launch mode activity attribute. field in class:ActivityRecord
516 pw.print(" launchMode="); pw.println(launchMode);
897 && (aInfo.launchMode == LAUNCH_MULTIPLE
898 || aInfo.launchMode == LAUNCH_SINGLE_TOP))) {
937 launchMode = aInfo.launchMode;
1145 if (launchMode != LAUNCH_SINGLE_INSTANCE && launchMode != LAUNCH_SINGLE_TASK) {

Completed in 34 milliseconds