Home | History | Annotate | Download | only in event

Lines Matching refs:attendees

37 import android.provider.CalendarContract.Attendees;
78 // TextView shown at the top of each type of attendees
93 // Number of attendees responding or not responding.
114 // Create dividers between groups of attendees (accepted, declined, etc...)
121 // Create a filter to convert photos of declined attendees to grayscale.
155 // Add the number of attendees in the specific status (corresponding to the divider) in
218 if (item.mAttendee.mStatus == Attendees.ATTENDEE_STATUS_NONE) {
223 if (item.mAttendee.mStatus == Attendees.ATTENDEE_STATUS_DECLINED) {
289 case Attendees.ATTENDEE_STATUS_ACCEPTED: {
300 case Attendees.ATTENDEE_STATUS_DECLINED: {
311 case Attendees.ATTENDEE_STATUS_TENTATIVE: {
339 // Show separator between Attendees
369 public void addAttendees(ArrayList<Attendee> attendees) {
371 for (final Attendee attendee : attendees) {
377 public void addAttendees(HashMap<String, Attendee> attendees) {
379 for (final Attendee attendee : attendees.values()) {
385 public void addAttendees(String attendees) {
387 EditEventHelper.getAddressesFromList(attendees, mValidator);