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/
CalendarEventModel.java 47 public static class Attendee implements Serializable {
58 if (!(obj instanceof Attendee)) {
61 Attendee other = (Attendee) obj;
82 public Attendee(String name, String email) {
85 public Attendee(String name, String email, int status, String identity,
242 // PROVIDER_NOTES How does an event not have attendee data? The owner is added
243 // as an attendee by default.
270 public LinkedHashMap<String, Attendee> mAttendeesList;
275 mAttendeesList = new LinkedHashMap<String, Attendee>();
440 final Attendee attendee = new Attendee(address.getName(), address.getAddress()); local
    [all...]
  /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 59 import com.android.calendar.CalendarEventModel.Attendee;
258 Attendee attendee = new Attendee(name, email); local
259 attendee.mStatus = status;
260 mModel.addAttendee(attendee);
261 mOriginalModel.addAttendee(attendee);
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
CalendarTest.java 111 * when you want a "self" attendee entry.
598 * Adds a new attendee to the specified event.
600 * @return the _id of the new attendee, or -1 on failure
606 ContentValues attendee = new ContentValues(); local
607 attendee.put(Attendees.EVENT_ID, eventId);
608 attendee.put(Attendees.ATTENDEE_NAME, name);
609 attendee.put(Attendees.ATTENDEE_EMAIL, email);
610 attendee.put(Attendees.ATTENDEE_STATUS, status);
611 attendee.put(Attendees.ATTENDEE_RELATIONSHIP, relationship);
612 attendee.put(Attendees.ATTENDEE_TYPE, type)
1037 ContentValues attendee = new ContentValues(); local
    [all...]
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarProvider2Test.java 1921 ContentValues attendee = new ContentValues(); local
2093 ContentValues attendee = new ContentValues(); local
    [all...]
  /packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
CalendarSyncAdapter.java 128 // Used to indicate that we removed the attendee list because it was too large
146 // attendee list. By making the meeting organizer OTHER than the user, we cause the UI to
331 // Handle the organizer (who IS an attendee on device, but NOT in EAS)
586 // attendee!
617 // If the user is an attendee, set the attendee status using busyStatus (note that the
619 // Add the insert/update operation for each attendee (based on whether it's add/change)
648 for (ContentValues attendee: attendeeValues) {
649 String attendeeEmail = attendee.getAsString(Attendees.ATTENDEE_EMAIL);
    [all...]
  /external/zxing/core/
core.jar 

Completed in 293 milliseconds