Searched refs:originalId (Results 1 - 2 of 2) sorted by relevance

/packages/providers/CalendarProvider/src/com/android/providers/calendar/
H A DCalendarInstancesHelper.java76 * originalId matches the second argument. Returns the _id field from the set of
652 String originalId = values.getAsString(Events.ORIGINAL_ID);
654 if (CalendarProvider2.isRecurrenceEvent(rrule, rdate, originalId, originalSyncId)) {
732 * (2) Exception to recurrence event. Has non-empty originalId (if it originated
740 * time we set originalId in related exceptions where originalSyncId is the only
741 * way to find exceptions for a recurrence. Thus, an empty originalId field may
774 // it's an exception, we will find the value in the originalId field.
775 String originalId = values.getAsString(Events.ORIGINAL_ID);
776 if (originalId == null) {
778 originalId
[all...]
H A DCalendarProvider2.java1510 public static boolean isRecurrenceEvent(String rrule, String rdate, String originalId, argument
1514 !TextUtils.isEmpty(originalId) ||
2062 * Fills in the originalId column for previously-created exceptions to this event. If
2066 * this happens, the originalId field will not have been set in the
2070 * originalId field of any events whose originalSyncId matches _sync_id.
2178 long originalId = getOriginalId(updatedValues
2181 if (originalId != -1) {
2182 updatedValues.put(Events.ORIGINAL_ID, originalId);
2649 long originalId = -1;
2656 originalId
2666 getOriginalSyncId(long originalId) argument
[all...]

Completed in 37 milliseconds