Home | History | Annotate | Download | only in app

Lines Matching defs:intents

187      * @return the number of intents added so far.
219 "No intents added to TaskStackBuilder; cannot startActivities");
271 "No intents added to TaskStackBuilder; cannot getPendingIntent");
285 "No intents added to TaskStackBuilder; cannot getPendingIntent");
293 * Return an array containing the intents added to this builder. The intent at the
297 * @return An array containing the intents added to this builder.
301 Intent[] intents = new Intent[mIntents.size()];
302 if (intents.length == 0) return intents;
304 intents[0] = new Intent(mIntents.get(0)).addFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
307 for (int i = 1; i < intents.length; i++) {
308 intents[i] = new Intent(mIntents.get(i));
310 return intents;