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.java2762 private void checkEvent(int eventId, String title, long dtStart, long dtEnd, boolean allDay) { in checkEvent() argument
2779 assertEquals(dtEnd, cursor.getLong(colIndexDtEnd)); in checkEvent()
/packages/apps/Exchange/src/com/android/exchange/eas/
DEasSendMeetingResponse.java168 final String dtEnd = meetingInfo.get(MeetingInfo.MEETING_DTEND); in sendMeetingResponseMail() local
169 if (TextUtils.isEmpty(dtStamp) || TextUtils.isEmpty(dtStart) || TextUtils.isEmpty(dtEnd)) { in sendMeetingResponseMail()
170 LogUtils.w(TAG, "blank dtStamp %s dtStart %s dtEnd %s", dtStamp, dtStart, dtEnd); in sendMeetingResponseMail()
186 Utility.parseEmailDateTimeToMillis(dtEnd)); in sendMeetingResponseMail()
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
DCalendarProvider2.java2918 Long dtEnd = values.getAsLong(Events.DTEND); in calculateLastDate() local
2919 if (dtEnd != null) { in calculateLastDate()
2920 lastMillis = dtEnd; in calculateLastDate()