Home | History | Annotate | Download | only in calendar

Lines Matching refs:attendee

98 import com.android.calendar.CalendarEventModel.Attendee;
382 ArrayList<Attendee> mAcceptedAttendees = new ArrayList<Attendee>();
383 ArrayList<Attendee> mDeclinedAttendees = new ArrayList<Attendee>();
384 ArrayList<Attendee> mTentativeAttendees = new ArrayList<Attendee>();
385 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
1878 * Returns true if there is at least 1 attendee that is not the viewer.
1881 for (Attendee attendee : mAcceptedAttendees) {
1882 if (Utils.isEmailableFrom(attendee.mEmail, mSyncAccountName)) {
1886 for (Attendee attendee : mTentativeAttendees) {
1887 if (Utils.isEmailableFrom(attendee.mEmail, mSyncAccountName)) {
1891 for (Attendee attendee : mNoResponseAttendees) {
1892 if (Utils.isEmailableFrom(attendee.mEmail, mSyncAccountName)) {
1896 for (Attendee attendee : mDeclinedAttendees) {
1897 if (Utils.isEmailableFrom(attendee.mEmail, mSyncAccountName)) {
1973 // b) you're not the organizer and only attendee AND
1975 // (if the attendee data has been hidden, the visible number of attendees
1978 // paying attention to whether or not an attendee status was
2028 public void showContactInfo(Attendee attendee, Rect rect) {
2031 final String address = attendee.mEmail;
2046 Rfc822Token sender = new Rfc822Token(attendee.mName, attendee.mEmail, null);
2050 final String senderPersonal = attendee.mName;