Searched refs:attendee (Results 1 - 10 of 10) sorted by relevance

/packages/apps/Calendar/src/com/android/calendar/event/
H A DAttendeesView.java168 * Inflates a layout for a given attendee view and set up each element in it, and returns
181 final Attendee attendee = item.mAttendee;
184 nameView.setText(TextUtils.isEmpty(attendee.mName) ? attendee.mEmail : attendee.mName);
242 public boolean contains(Attendee attendee) { argument
250 if (TextUtils.equals(attendee.mEmail, attendeeItem.mAttendee.mEmail)) {
280 private void addOneAttendee(Attendee attendee) { argument
281 if (contains(attendee)) {
284 final AttendeeItem item = new AttendeeItem(attendee, mDefaultBadg
[all...]
H A DEditEventFragment.java258 Attendee attendee = new Attendee(name, email);
259 attendee.mStatus = status;
260 mModel.addAttendee(attendee);
261 mOriginalModel.addAttendee(attendee);
H A DEditEventHelper.java211 public AttendeeItem(Attendee attendee, Drawable badge) { argument
212 mAttendee = attendee;
404 // Organizer is not an attendee
408 // Add organizer as attendee since we got some attendees
431 Log.d(TAG, "Setting attendee status to " + model.mSelfAttendeeStatus);
473 // existing attendee. remove from new attendees set.
504 for (Attendee attendee : newAttendees.values()) {
506 values.put(Attendees.ATTENDEE_NAME, attendee.mName);
507 values.put(Attendees.ATTENDEE_EMAIL, attendee.mEmail);
549 Log.v(TAG, "Dropping invalid attendee emai
[all...]
H A DEditEventView.java1438 for (Attendee attendee : attendeesList.values()) {
1439 mAttendeesList.append(attendee.mEmail);
/packages/apps/Calendar/src/com/android/calendar/
H A DCalendarEventModel.java242 // PROVIDER_NOTES How does an event not have attendee data? The owner is added
243 // as an attendee by default.
431 public void addAttendee(Attendee attendee) { argument
432 mAttendeesList.put(attendee.mEmail, attendee);
440 final Attendee attendee = new Attendee(address.getName(), address.getAddress());
441 if (TextUtils.isEmpty(attendee.mName)) {
442 attendee.mName = attendee.mEmail;
444 addAttendee(attendee);
449 removeAttendee(Attendee attendee) argument
[all...]
H A DEventInfoFragment.java1007 // If we never got an owner attendee id we can't set the status
1037 // Update the attendee status in the attendees table. the provider
1055 * "self attendee status" value. The provider will take care of updating the corresponding
1755 * Initializes the list of 'to' and 'cc' emails from the attendee list.
1760 for (Attendee attendee : mAcceptedAttendees) {
1761 addIfEmailable(mToEmails, attendee.mEmail);
1763 for (Attendee attendee : mTentativeAttendees) {
1764 addIfEmailable(mToEmails, attendee.mEmail);
1766 for (Attendee attendee : mNoResponseAttendees) {
1767 addIfEmailable(mToEmails, attendee
1907 showContactInfo(Attendee attendee, Rect rect) argument
[all...]
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
H A DCalendarProvider2Test.java1910 * Test attendee processing
1921 ContentValues attendee = new ContentValues();
1922 attendee.put(CalendarContract.Attendees.ATTENDEE_NAME, "Joe");
1923 attendee.put(CalendarContract.Attendees.ATTENDEE_EMAIL, DEFAULT_ACCOUNT);
1924 attendee.put(CalendarContract.Attendees.ATTENDEE_TYPE,
1926 attendee.put(CalendarContract.Attendees.ATTENDEE_RELATIONSHIP,
1928 attendee.put(CalendarContract.Attendees.EVENT_ID, eventId);
1929 attendee.put(CalendarContract.Attendees.ATTENDEE_IDENTITY, "ID1");
1930 attendee.put(CalendarContract.Attendees.ATTENDEE_ID_NAMESPACE, "IDNS1");
1931 Uri attendeesUri = mResolver.insert(CalendarContract.Attendees.CONTENT_URI, attendee);
[all...]
/packages/apps/Exchange/exchange2/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/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/Exchange/exchange2/src/com/android/exchange/adapter/
H A DCalendarSyncAdapter.java128 // 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);
664 // For updated events, we'll try to infer the attendee statu
[all...]

Completed in 224 milliseconds