Home | History | Annotate | Download | only in notification

Lines Matching refs:people

52  * people references. Also elevates the priority of real people.
234 final Set<String> people = new ArraySet<>(peopleOverride);
237 people.addAll(Arrays.asList(getExtraPeople(extras)));
243 for (String handle : people) {
281 Object people = extras.get(Notification.EXTRA_PEOPLE);
282 if (people instanceof String[]) {
283 return (String[]) people;
286 if (people instanceof ArrayList) {
287 ArrayList arrayList = (ArrayList) people;
311 if (people instanceof String) {
313 array[0] = (String) people;
317 if (people instanceof char[]) {
319 array[0] = new String((char[]) people);
323 if (people instanceof CharSequence) {
325 array[0] = ((CharSequence) people).toString();
329 if (people instanceof CharSequence[]) {
330 CharSequence[] charSeqArray = (CharSequence[]) people;