Home
last modified time | relevance | path

Searched refs:ORIGINAL_INSTANCE_TIME (Results 1 – 13 of 13) sorted by relevance

/packages/providers/CalendarProvider/src/com/android/providers/calendar/
DCalendarInstancesHelper.java68 + "(" + Events.ORIGINAL_INSTANCE_TIME + " IS NOT NULL AND "
69 + Events.ORIGINAL_INSTANCE_TIME
70 + " <= ? AND " + Events.ORIGINAL_INSTANCE_TIME + " >= ?)) AND "
120 Events.ORIGINAL_INSTANCE_TIME,
181 int originalInstanceTimeColumn = entries.getColumnIndex(Events.ORIGINAL_INSTANCE_TIME); in performInstanceExpansion()
367 initialValues.put(Events.ORIGINAL_INSTANCE_TIME, in performInstanceExpansion()
461 long originalTime = values.getAsLong(Events.ORIGINAL_INSTANCE_TIME); in performInstanceExpansion()
519 values.remove(Events.ORIGINAL_INSTANCE_TIME); in performInstanceExpansion()
656 Long originalInstanceTime = values.getAsLong(Events.ORIGINAL_INSTANCE_TIME); in updateInstancesLocked()
DCalendarProvider2.java415 ALLOWED_IN_EXCEPTION.add(Events.ORIGINAL_INSTANCE_TIME);
1736 Long originalInstanceTime = modValues.getAsLong(Events.ORIGINAL_INSTANCE_TIME); in handleInsertException()
1739 Events.ORIGINAL_INSTANCE_TIME); in handleInsertException()
1900 start = values.getAsLong(Events.ORIGINAL_INSTANCE_TIME); in handleInsertException()
1940 modValues.remove(Events.ORIGINAL_INSTANCE_TIME); in handleInsertException()
1971 values.remove(Events.ORIGINAL_INSTANCE_TIME); in handleInsertException()
2134 && values.containsKey(Events.ORIGINAL_INSTANCE_TIME) in insertInTransaction()
2138 final long origStart = values.getAsLong(Events.ORIGINAL_INSTANCE_TIME); in insertInTransaction()
2471 bob.append("\nori_inst_time: ").append(values.getAsLong(Events.ORIGINAL_INSTANCE_TIME)); in dumpEventNoPII()
2492 boolean hasOriginalInstanceTime = values.getAsLong(Events.ORIGINAL_INSTANCE_TIME) != null; in scrubEventData()
[all …]
DCalendarDatabaseHelper.java108 Events.ORIGINAL_INSTANCE_TIME + "," +
556 CalendarContract.Events.ORIGINAL_INSTANCE_TIME + " INTEGER," + in createEventsTable()
3187 + CalendarContract.Events.ORIGINAL_INSTANCE_TIME + "," in createEventsView()
/packages/apps/Exchange/src/com/android/exchange/adapter/
DCalendarSyncParser.java306 if (cv.containsKey(Events.ORIGINAL_INSTANCE_TIME) && in setTimeRelatedValues()
310 long exceptionTime = cv.getAsLong(Events.ORIGINAL_INSTANCE_TIME); in setTimeRelatedValues()
318 cv.put(Events.ORIGINAL_INSTANCE_TIME, cal.getTimeInMillis()); in setTimeRelatedValues()
688 boolean isException = cv.containsKey(Events.ORIGINAL_INSTANCE_TIME); in isValidEventValues()
801 cv.put(Events.ORIGINAL_INSTANCE_TIME, in exceptionParser()
/packages/apps/Exchange/src/com/android/exchange/utility/
DCalendarUtilities.java1745 boolean isException = entityValues.containsKey(Events.ORIGINAL_INSTANCE_TIME); in createMessageForEntity()
1824 long originalTime = entityValues.getAsLong(Events.ORIGINAL_INSTANCE_TIME); in createMessageForEntity()
1904 Date date = new Date(entityValues.getAsLong(Events.ORIGINAL_INSTANCE_TIME)); in createMessageForEntity()
/packages/apps/Exchange/tests/src/com/android/exchange/utility/
DCalendarUtilitiesTests.java294 entityValues.put(Events.ORIGINAL_INSTANCE_TIME, in setupTestExceptionEntity()
620 long originalTime = entityValues.getAsLong(Events.ORIGINAL_INSTANCE_TIME); in testCreateMessageForEntity_Exception_Cancel()
/packages/apps/Contacts/src/com/android/contacts/interactions/
DCalendarInteraction.java250 return mValues.getAsLong(Attendees.ORIGINAL_INSTANCE_TIME); in getOriginalInstanceTime()
/packages/apps/Calendar/src/com/android/calendar/
DDeleteEventHelper.java388 values.put(Events.ORIGINAL_INSTANCE_TIME, mStartMillis); in deleteRepeatingEvent()
DEventInfoFragment.java1396 values.put(Events.ORIGINAL_INSTANCE_TIME, mStartMillis); in createExceptionResponse()
/packages/apps/Exchange/src/com/android/exchange/eas/
DEasSyncCalendar.java426 Long originalTime = entityValues.getAsLong(Events.ORIGINAL_INSTANCE_TIME); in sendEvent()
/packages/apps/Calendar/src/com/android/calendar/event/
DEditEventHelper.java346 values.put(Events.ORIGINAL_INSTANCE_TIME, begin); in saveEvent()
/packages/apps/Calendar/tests/src/com/android/calendar/event/
DEditEventHelperTest.java647 mExpectedValues.put(Events.ORIGINAL_INSTANCE_TIME, mModel1.mOriginalStart); in verifySaveEventModifySingleInstance()
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
DCalendarProvider2Test.java1206 m.put(Events.ORIGINAL_INSTANCE_TIME, event.mOriginalInstance); in eventInfoToContentValues()