Home | History | Annotate | Download | only in calendar

Lines Matching defs:attendee

263     ArrayList<Attendee> mAcceptedAttendees = new ArrayList<Attendee>();
264 ArrayList<Attendee> mDeclinedAttendees = new ArrayList<Attendee>();
265 ArrayList<Attendee> mTentativeAttendees = new ArrayList<Attendee>();
266 ArrayList<Attendee> mNoResponseAttendees = new ArrayList<Attendee>();
496 private static class Attendee {
500 Attendee(String name, String email) {
544 mAcceptedAttendees.add(new Attendee(name, email));
547 mDeclinedAttendees.add(new Attendee(name, email));
550 mNoResponseAttendees.add(new Attendee(name, email));
553 mTentativeAttendees.add(new Attendee(name, email));
563 // we have attendee data (might have been removed by the server
721 // If we never got an owner attendee id we can't set the status
754 // Update the attendee status in the attendees table. the provider
984 private void addAttendeesToLayout(ArrayList<Attendee> attendees, LinearLayout attendeeList,
1007 Attendee attendee = attendees.get(i);
1008 selectionArgs[i] = attendee.mEmail;
1011 v.setTag(attendee);
1018 String name = attendee.mName;
1020 name = attendee.mEmail;
1026 vh.badge.assignContactFromEmail(attendee.mEmail, true);
1028 mViewHolders.put(attendee.mEmail, vh);
1100 // b) you're not the organizer and only attendee AND
1102 // (if the attendee data has been hidden, the visible number of attendees
1105 // paying attention to whether or not an attendee status was
1168 public void showContactInfo(Attendee attendee, Rect rect) {
1171 final String address = attendee.mEmail;
1185 Rfc822Token sender = new Rfc822Token(attendee.mName, attendee.mEmail, null);
1189 final String senderPersonal = attendee.mName;