Home | History | Annotate | Download | only in notification

Lines Matching defs:people

46  * people references. Also elevates the priority of real people.
217 final String[] people = getExtraPeople(extras);
218 if (people == null || people.length == 0) {
224 for (int personIdx = 0; personIdx < people.length && personIdx < MAX_PEOPLE; personIdx++) {
225 final String handle = people[personIdx];
260 Object people = extras.get(Notification.EXTRA_PEOPLE);
261 if (people instanceof String[]) {
262 return (String[]) people;
265 if (people instanceof ArrayList) {
266 ArrayList arrayList = (ArrayList) people;
290 if (people instanceof String) {
292 array[0] = (String) people;
296 if (people instanceof char[]) {
298 array[0] = new String((char[]) people);
302 if (people instanceof CharSequence) {
304 array[0] = ((CharSequence) people).toString();
308 if (people instanceof CharSequence[]) {
309 CharSequence[] charSeqArray = (CharSequence[]) people;