Searched refs:nextIntent (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/app/
H A DTaskStackBuilder.java85 * @param nextIntent Intent for the next Activity in the synthesized task stack
88 public TaskStackBuilder addNextIntent(Intent nextIntent) { argument
89 mIntents.add(nextIntent);
98 * with the resolved ComponentName of nextIntent (if it can be resolved), followed by
99 * {@link #addNextIntent(Intent) addNextIntent} with nextIntent.</p>
101 * @param nextIntent Intent for the topmost Activity in the synthesized task stack.
105 public TaskStackBuilder addNextIntentWithParentStack(Intent nextIntent) { argument
106 ComponentName target = nextIntent.getComponent();
108 target = nextIntent.resolveActivity(mSourceContext.getPackageManager());
113 addNextIntent(nextIntent);
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DTaskStackBuilder.java153 * @param nextIntent Intent for the next Activity in the synthesized task stack
156 public TaskStackBuilder addNextIntent(Intent nextIntent) { argument
157 mIntents.add(nextIntent);
166 * with the resolved ComponentName of nextIntent (if it can be resolved), followed by
167 * {@link #addNextIntent(Intent) addNextIntent} with nextIntent.</p>
169 * @param nextIntent Intent for the topmost Activity in the synthesized task stack.
173 public TaskStackBuilder addNextIntentWithParentStack(Intent nextIntent) { argument
174 ComponentName target = nextIntent.getComponent();
176 target = nextIntent.resolveActivity(mSourceContext.getPackageManager());
181 addNextIntent(nextIntent);
[all...]

Completed in 59 milliseconds