HomeSort by relevance Sort by last modified time
    Searched defs:attendee (Results 1 - 7 of 7) 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...]
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...]
  /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...]
  /cts/tests/tests/provider/src/android/provider/cts/
CalendarTest.java 125 * when you want a "self" attendee entry.
612 * Adds a new attendee to the specified event.
614 * @return the _id of the new attendee, or -1 on failure
620 ContentValues attendee = new ContentValues(); local
621 attendee.put(Attendees.EVENT_ID, eventId);
622 attendee.put(Attendees.ATTENDEE_NAME, name);
623 attendee.put(Attendees.ATTENDEE_EMAIL, email);
624 attendee.put(Attendees.ATTENDEE_STATUS, status);
625 attendee.put(Attendees.ATTENDEE_RELATIONSHIP, relationship);
626 attendee.put(Attendees.ATTENDEE_TYPE, type)
1051 ContentValues attendee = new ContentValues(); local
    [all...]
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarProvider2Test.java 2049 ContentValues attendee = new ContentValues(); local
2221 ContentValues attendee = new ContentValues(); local
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/adapter/
CalendarSyncParser.java 81 // Used to indicate that we removed the attendee list because it was too large
95 // attendee list. By making the meeting organizer OTHER than the user, we cause the UI to
251 // Handle the organizer (who IS an attendee on device, but NOT in EAS)
516 // attendee!
550 // If the user is an attendee, set the attendee status using busyStatus (note that the
552 // Add the insert/update operation for each attendee (based on whether it's add/change)
581 for (ContentValues attendee: attendeeValues) {
582 String attendeeEmail = attendee.getAsString(Attendees.ATTENDEE_EMAIL);
597 // For updated events, we'll try to infer the attendee status from th
    [all...]
  /external/zxing/core/
core.jar 

Completed in 675 milliseconds