Searched defs:attendee (Results 1 - 5 of 5) sorted by relevance

/packages/apps/Calendar/src/com/android/calendar/event/
H A DAttendeesView.java165 * Inflates a layout for a given attendee view and set up each element in it, and returns
178 final Attendee attendee = item.mAttendee;
181 nameView.setText(TextUtils.isEmpty(attendee.mName) ? attendee.mEmail : attendee.mName);
221 public boolean contains(Attendee attendee) { argument
229 if (TextUtils.equals(attendee.mEmail, attendeeItem.mAttendee.mEmail)) {
244 private void addOneAttendee(Attendee attendee) { argument
245 if (contains(attendee)) {
248 final AttendeeItem item = new AttendeeItem(attendee, mDefaultBadg
[all...]
H A DEditEventHelper.java217 public AttendeeItem(Attendee attendee, Drawable badge) { argument
218 mAttendee = attendee;
437 Log.d(TAG, "Setting attendee status to " + model.mSelfAttendeeStatus);
479 // existing attendee. remove from new attendees set.
510 for (Attendee attendee : newAttendees.values()) {
512 values.put(Attendees.ATTENDEE_NAME, attendee.mName);
513 values.put(Attendees.ATTENDEE_EMAIL, attendee.mEmail);
555 Log.v(TAG, "Dropping invalid attendee email address: " + address.getAddress());
1129 // AND b) ownerCanRespond == true AND c) attendee data exist
1134 // paying attention to whether or not an attendee statu
[all...]
/packages/apps/Exchange/tests/src/com/android/exchange/utility/
H A DCalendarUtilitiesTests.java114 private static final String ATTENDEE = "attendee@server.com";
236 private Entity setupTestEventEntity(String organizer, String attendee, String title) { argument
256 // Add the attendee
259 attendeeValues.put(Attendees.ATTENDEE_EMAIL, attendee);
270 private Entity setupTestExceptionEntity(String organizer, String attendee, String title) { argument
271 Entity entity = setupTestEventEntity(organizer, attendee, title);
285 // Create a dummy account for the attendee
331 // Create a dummy account for the attendee
393 // Create a dummy account for the attendee
459 // Create a dummy account for the attendee
[all...]
/packages/apps/Calendar/src/com/android/calendar/
H A DCalendarEventModel.java239 // PROVIDER_NOTES How does an event not have attendee data? The owner is added
240 // as an attendee by default.
425 public void addAttendee(Attendee attendee) { argument
426 mAttendeesList.put(attendee.mEmail, attendee);
434 final Attendee attendee = new Attendee(address.getName(), address.getAddress());
435 if (TextUtils.isEmpty(attendee.mName)) {
436 attendee.mName = attendee.mEmail;
438 addAttendee(attendee);
443 removeAttendee(Attendee attendee) argument
[all...]
H A DEventInfoFragment.java882 // If we never got an owner attendee id we can't set the status
912 // Update the attendee status in the attendees table. the provider
930 * "self attendee status" value. The provider will take care of updating the corresponding
1532 for (Attendee attendee : attendees) {
1539 String name = attendee.getDisplayName();
1563 // b) you're not the organizer and only attendee AND
1565 // (if the attendee data has been hidden, the visible number of attendees
1568 // paying attention to whether or not an attendee status was
1617 public void showContactInfo(Attendee attendee, Rect rect) { argument
1620 final String address = attendee
[all...]

Completed in 85 milliseconds