Lines Matching refs:Attendee
98 import com.android.calendar.CalendarEventModel.Attendee;
382 ArrayList<Attendee> mAcceptedAttendees = new ArrayList<Attendee>();
383 ArrayList<Attendee> mDeclinedAttendees = new ArrayList<Attendee>();
384 ArrayList<Attendee> mTentativeAttendees = new ArrayList<Attendee>();
385 ArrayList<Attendee> mNoResponseAttendees = new ArrayList<Attendee>();
1123 mAcceptedAttendees.add(new Attendee(name, email, in initAttendeesCursor()
1128 mDeclinedAttendees.add(new Attendee(name, email, in initAttendeesCursor()
1133 mTentativeAttendees.add(new Attendee(name, email, in initAttendeesCursor()
1138 mNoResponseAttendees.add(new Attendee(name, email, in initAttendeesCursor()
1881 for (Attendee attendee : mAcceptedAttendees) { in hasEmailableAttendees()
1886 for (Attendee attendee : mTentativeAttendees) { in hasEmailableAttendees()
1891 for (Attendee attendee : mNoResponseAttendees) { in hasEmailableAttendees()
1896 for (Attendee attendee : mDeclinedAttendees) { in hasEmailableAttendees()
2028 public void showContactInfo(Attendee attendee, Rect rect) { in showContactInfo()