Searched defs:attendeeValues (Results 1 - 2 of 2) sorted by relevance
/packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/ |
H A D | CalendarSyncAdapter.java | 440 ArrayList<ContentValues> attendeeValues = new ArrayList<ContentValues>(); 511 attendeeValues = attendeesParser(ops, eventId); 537 exceptionsParser(ops, cv, attendeeValues, reminderMins, busyStatus, 623 int numAttendees = attendeeValues.size(); 651 for (ContentValues attendee: attendeeValues) { 837 ArrayList<ContentValues> attendeeValues, int reminderMins, int busyStatus, 941 if (attendeeValues != null) { 942 for (ContentValues attValues: attendeeValues) { 988 ArrayList<ContentValues> attendeeValues, int reminderMins, int busyStatus, 993 exceptionParser(ops, cv, attendeeValues, reminderMin 836 exceptionParser(CalendarOperations ops, ContentValues parentCv, ArrayList<ContentValues> attendeeValues, int reminderMins, int busyStatus, long startTime, long endTime) argument 987 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 D | CalendarProvider2.java | 2742 * @param attendeeValues the column values for one row in the Attendees table. 2744 private void updateEventAttendeeStatus(SQLiteDatabase db, ContentValues attendeeValues) { argument 2746 Long eventIdObj = attendeeValues.getAsLong(Attendees.EVENT_ID); 2804 if (attendeeValues.containsKey(Attendees.ATTENDEE_EMAIL)) { 2805 attendeeEmail = attendeeValues.getAsString(Attendees.ATTENDEE_EMAIL); 2818 Integer relationObj = attendeeValues.getAsInteger(Attendees.ATTENDEE_RELATIONSHIP); 2827 Integer statusObj = attendeeValues.getAsInteger(Attendees.ATTENDEE_STATUS);
|
Completed in 714 milliseconds