/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 | 61 import com.android.calendar.CalendarEventModel.Attendee; 296 Attendee attendee = new Attendee(name, email); local 297 attendee.mStatus = status; 298 mModel.addAttendee(attendee); 299 mOriginalModel.addAttendee(attendee); [all...] |
EditEventHelper.java | 42 import com.android.calendar.CalendarEventModel.Attendee; 238 public Attendee mAttendee; 244 public AttendeeItem(Attendee attendee, Drawable badge) { 245 mAttendee = attendee; 442 // Organizer is not an attendee 446 // Add organizer as attendee since we got some attendees 469 Log.d(TAG, "Setting attendee status to " + model.mSelfAttendeeStatus); 496 HashMap<String, Attendee> newAttendees = model.mAttendeesList; 508 HashMap<String, Attendee> originalAttendees = originalModel.mAttendeesList [all...] |
EditEventView.java | 71 import com.android.calendar.CalendarEventModel.Attendee; [all...] |
/packages/apps/Calendar/src/com/android/calendar/ |
CalendarEventModel.java | 48 public static class Attendee implements Serializable { 59 if (!(obj instanceof Attendee)) { 62 Attendee other = (Attendee) obj; 83 public Attendee(String name, String email) { 86 public Attendee(String name, String email, int status, String identity, 251 // PROVIDER_NOTES How does an event not have attendee data? The owner is added 252 // as an attendee by default. 279 public LinkedHashMap<String, Attendee> mAttendeesList; 284 mAttendeesList = new LinkedHashMap<String, Attendee>(); 455 final Attendee attendee = new Attendee(address.getName(), address.getAddress()); local [all...] |
EventInfoFragment.java | 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>(); [all...] |
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/ |
CalendarProvider2Test.java | 2049 ContentValues attendee = new ContentValues(); local 2221 ContentValues attendee = new ContentValues(); local [all...] |
/cts/tests/tests/provider/src/android/provider/cts/ |
CalendarTest.java | 126 * when you want a "self" attendee entry. 613 * Adds a new attendee to the specified event. 615 * @return the _id of the new attendee, or -1 on failure 621 ContentValues attendee = new ContentValues(); local 622 attendee.put(Attendees.EVENT_ID, eventId); 623 attendee.put(Attendees.ATTENDEE_NAME, name); 624 attendee.put(Attendees.ATTENDEE_EMAIL, email); 625 attendee.put(Attendees.ATTENDEE_STATUS, status); 626 attendee.put(Attendees.ATTENDEE_RELATIONSHIP, relationship); 627 attendee.put(Attendees.ATTENDEE_TYPE, type) 1052 ContentValues attendee = new ContentValues(); local [all...] |
/packages/apps/Exchange/tests/src/com/android/exchange/utility/ |
CalendarUtilitiesTests.java | 121 private static final String ATTENDEE = "attendee@server.com"; 246 private Entity setupTestEventEntity(String organizer, String attendee, String title) { 266 // Add the attendee 269 attendeeValues.put(Attendees.ATTENDEE_EMAIL, attendee); 280 private Entity setupTestExceptionEntity(String organizer, String attendee, String title) { 281 Entity entity = setupTestEventEntity(organizer, attendee, title); 293 Entity entity = setupTestEventEntity(ORGANIZER, ATTENDEE, title); 295 // Create a dummy account for the attendee 297 account.mEmailAddress = ATTENDEE; [all...] |
/packages/apps/Exchange/src/com/android/exchange/adapter/ |
CalendarSyncParser.java | 80 // Used to indicate that we removed the attendee list because it was too large 94 // attendee list. By making the meeting organizer OTHER than the user, we cause the UI to 250 // Handle the organizer (who IS an attendee on device, but NOT in EAS) 507 // attendee! 541 // If the user is an attendee, set the attendee status using busyStatus (note that the 543 // Add the insert/update operation for each attendee (based on whether it's add/change) 572 for (ContentValues attendee: attendeeValues) { 573 String attendeeEmail = attendee.getAsString(Attendees.ATTENDEE_EMAIL); 588 // For updated events, we'll try to infer the attendee status from th [all...] |
/external/zxing/core/ |
core.jar | |
/external/chromium_org/native_client_sdk/src/doc/_static/css/ |
local_extensions.css | [all...] |