Searched defs:attendeeValues (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Exchange/src/com/android/exchange/adapter/
H A DCalendarSyncParser.java361 ArrayList<ContentValues> attendeeValues = new ArrayList<ContentValues>();
432 attendeeValues = attendeesParser();
458 exceptionsParser(ops, cv, attendeeValues, reminderMins, busyStatus,
544 int numAttendees = attendeeValues.size();
572 for (ContentValues attendee: attendeeValues) {
758 ArrayList<ContentValues> attendeeValues, int reminderMins, int busyStatus,
862 if (attendeeValues != null) {
863 for (ContentValues attValues: attendeeValues) {
909 ArrayList<ContentValues> attendeeValues, int reminderMins, int busyStatus,
914 exceptionParser(ops, cv, attendeeValues, reminderMin
757 exceptionParser(CalendarOperations ops, ContentValues parentCv, ArrayList<ContentValues> attendeeValues, int reminderMins, int busyStatus, long startTime, long endTime) argument
908 exceptionsParser(CalendarOperations ops, ContentValues cv, ArrayList<ContentValues> attendeeValues, int reminderMins, int busyStatus, long startTime, long endTime) argument
[all...]
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
H A DCalendarProvider2.java2767 * @param attendeeValues the column values for one row in the Attendees table.
2769 private void updateEventAttendeeStatus(SQLiteDatabase db, ContentValues attendeeValues) { argument
2771 Long eventIdObj = attendeeValues.getAsLong(Attendees.EVENT_ID);
2829 if (attendeeValues.containsKey(Attendees.ATTENDEE_EMAIL)) {
2830 attendeeEmail = attendeeValues.getAsString(Attendees.ATTENDEE_EMAIL);
2843 Integer relationObj = attendeeValues.getAsInteger(Attendees.ATTENDEE_RELATIONSHIP);
2852 Integer statusObj = attendeeValues.getAsInteger(Attendees.ATTENDEE_STATUS);

Completed in 107 milliseconds