Home
last modified time | relevance | path

Searched refs:dtEnd (Results 1 – 4 of 4) sorted by relevance

/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
DSyncCalendarTest.java63 long dtEnd = time.toMillis(false) + ONE_HOUR_IN_MILLIS; in testCreateAllDayEvent() local
64 EventInfo allDayEvent = new EventInfo("allday0", dtStart, dtEnd, true); in testCreateAllDayEvent()
83 long dtEnd = cursor.getLong(cursor.getColumnIndex("dtend")); in testEditEventTitle() local
85 EventInfo event = new EventInfo(newTitle, dtStart, dtEnd, false); in testEditEventTitle()
142 long dtEnd = cursor.getLong(cursor.getColumnIndex("dtend")); in testEditEventDescription() local
145 EventInfo event = new EventInfo(title, dtStart, dtEnd, false, newDescription); in testEditEventDescription()
DCalendarProvider2Test.java2634 private void checkEvent(int eventId, String title, long dtStart, long dtEnd, boolean allDay) { in checkEvent() argument
2651 assertEquals(dtEnd, cursor.getLong(colIndexDtEnd)); in checkEvent()
/packages/apps/Exchange/exchange2/src/com/android/exchange/
DEasSyncService.java984 String dtEnd = meetingInfo.get(MeetingInfo.MEETING_DTEND); in sendMeetingResponseMail() local
995 entityValues.put(Events.DTEND, Utility.parseEmailDateTimeToMillis(dtEnd)); in sendMeetingResponseMail()
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
DCalendarProvider2.java2850 Long dtEnd = values.getAsLong(Events.DTEND); in calculateLastDate() local
2851 if (dtEnd != null) { in calculateLastDate()
2852 lastMillis = dtEnd; in calculateLastDate()