Home | History | Annotate | Download | only in calendar

Lines Matching refs:attendee

98 import com.android.calendar.CalendarEventModel.Attendee;
381 ArrayList<Attendee> mAcceptedAttendees = new ArrayList<Attendee>();
382 ArrayList<Attendee> mDeclinedAttendees = new ArrayList<Attendee>();
383 ArrayList<Attendee> mTentativeAttendees = new ArrayList<Attendee>();
384 ArrayList<Attendee> mNoResponseAttendees = new ArrayList<Attendee>();
1123 mAcceptedAttendees.add(new Attendee(name, email,
1128 mDeclinedAttendees.add(new Attendee(name, email,
1133 mTentativeAttendees.add(new Attendee(name, email,
1138 mNoResponseAttendees.add(new Attendee(name, email,
1335 // If we never got an owner attendee id we can't set the status
1370 // Update the attendee status in the attendees table. the provider
1388 * "self attendee status" value. The provider will take care of updating the corresponding
1872 * Returns true if there is at least 1 attendee that is not the viewer.
1875 for (Attendee attendee : mAcceptedAttendees) {
1876 if (Utils.isEmailableFrom(attendee.mEmail, mSyncAccountName)) {
1880 for (Attendee attendee : mTentativeAttendees) {
1881 if (Utils.isEmailableFrom(attendee.mEmail, mSyncAccountName)) {
1885 for (Attendee attendee : mNoResponseAttendees) {
1886 if (Utils.isEmailableFrom(attendee.mEmail, mSyncAccountName)) {
1890 for (Attendee attendee : mDeclinedAttendees) {
1891 if (Utils.isEmailableFrom(attendee.mEmail, mSyncAccountName)) {
1967 // b) you're not the organizer and only attendee AND
1969 // (if the attendee data has been hidden, the visible number of attendees
1972 // paying attention to whether or not an attendee status was
2022 public void showContactInfo(Attendee attendee, Rect rect) {
2025 final String address = attendee.mEmail;
2040 Rfc822Token sender = new Rfc822Token(attendee.mName, attendee.mEmail, null);
2044 final String senderPersonal = attendee.mName;