HomeSort by relevance Sort by last modified time
    Searched refs:Attendee (Results 1 - 6 of 6) sorted by null

  /packages/apps/Calendar/src/com/android/calendar/event/
AttendeesView.java 19 import com.android.calendar.CalendarEventModel.Attendee;
168 * Inflates a layout for a given attendee view and set up each element in it, and returns
181 final Attendee attendee = item.mAttendee; local
184 nameView.setText(TextUtils.isEmpty(attendee.mName) ? attendee.mEmail : attendee.mName);
242 public boolean contains(Attendee attendee) {
250 if (TextUtils.equals(attendee.mEmail, attendeeItem.mAttendee.mEmail))
390 final Attendee attendee = new Attendee(address.getName(), address.getAddress()); local
    [all...]
EditEventHelper.java 42 import com.android.calendar.CalendarEventModel.Attendee;
238 public Attendee mAttendee;
244 public AttendeeItem(Attendee attendee, Drawable badge) {
245 mAttendee = attendee;
442 // Organizer is not an attendee
446 // Add organizer as attendee since we got some attendees
469 Log.d(TAG, "Setting attendee status to " + model.mSelfAttendeeStatus);
496 HashMap<String, Attendee> newAttendees = model.mAttendeesList;
508 HashMap<String, Attendee> originalAttendees = originalModel.mAttendeesList
    [all...]
EditEventFragment.java 61 import com.android.calendar.CalendarEventModel.Attendee;
296 Attendee attendee = new Attendee(name, email); local
297 attendee.mStatus = status;
298 mModel.addAttendee(attendee);
299 mOriginalModel.addAttendee(attendee);
    [all...]
EditEventView.java 71 import com.android.calendar.CalendarEventModel.Attendee;
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
CalendarEventModel.java 48 public static class Attendee implements Serializable {
59 if (!(obj instanceof Attendee)) {
62 Attendee other = (Attendee) obj;
83 public Attendee(String name, String email) {
86 public Attendee(String name, String email, int status, String identity,
251 // PROVIDER_NOTES How does an event not have attendee data? The owner is added
252 // as an attendee by default.
279 public LinkedHashMap<String, Attendee> mAttendeesList;
284 mAttendeesList = new LinkedHashMap<String, Attendee>();
455 final Attendee attendee = new Attendee(address.getName(), address.getAddress()); local
    [all...]
EventInfoFragment.java 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>();
    [all...]

Completed in 757 milliseconds