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.java157 * @param nextIntent Intent for the next Activity in the synthesized task stack
160 public TaskStackBuilder addNextIntent(Intent nextIntent) { argument
161 mIntents.add(nextIntent);
170 * with the resolved ComponentName of nextIntent (if it can be resolved), followed by
171 * {@link #addNextIntent(Intent) addNextIntent} with nextIntent.</p>
173 * @param nextIntent Intent for the topmost Activity in the synthesized task stack.
177 public TaskStackBuilder addNextIntentWithParentStack(Intent nextIntent) { argument
178 ComponentName target = nextIntent.getComponent();
180 target = nextIntent.resolveActivity(mSourceContext.getPackageManager());
185 addNextIntent(nextIntent);
[all...]

Completed in 348 milliseconds