Lines Matching refs:Attendee
25 import com.android.calendar.CalendarEventModel.Attendee;
285 ArrayList<Attendee> mAcceptedAttendees = new ArrayList<Attendee>();
286 ArrayList<Attendee> mDeclinedAttendees = new ArrayList<Attendee>();
287 ArrayList<Attendee> mTentativeAttendees = new ArrayList<Attendee>();
288 ArrayList<Attendee> mNoResponseAttendees = new ArrayList<Attendee>();
744 mAcceptedAttendees.add(new Attendee(name, email,
748 mDeclinedAttendees.add(new Attendee(name, email,
752 mTentativeAttendees.add(new Attendee(name, email,
756 mNoResponseAttendees.add(new Attendee(name, email,
882 // If we never got an owner attendee id we can't set the status
912 // Update the attendee status in the attendees table. the provider
930 * "self attendee status" value. The provider will take care of updating the corresponding
1520 private void formatAttendees(ArrayList<Attendee> attendees, SpannableStringBuilder sb, int type) {
1532 for (Attendee attendee : attendees) {
1539 String name = attendee.getDisplayName();
1563 // b) you're not the organizer and only attendee AND
1565 // (if the attendee data has been hidden, the visible number of attendees
1568 // paying attention to whether or not an attendee status was
1617 public void showContactInfo(Attendee attendee, Rect rect) {
1620 final String address = attendee.mEmail;
1635 Rfc822Token sender = new Rfc822Token(attendee.mName, attendee.mEmail, null);
1639 final String senderPersonal = attendee.mName;