Home | History | Annotate | Download | only in calendar

Lines Matching refs:dtEnd

116         Events.DTEND,
561 values.put("dtend", get2445ToMillis(timezone, dtEnd2445));
1069 Events.DTEND,
1174 int dtendColumn = entries.getColumnIndex(Events.DTEND);
1305 // compute the duration from dtend, if we can.
1594 * corrects the fields DTSTART, DTEND, and DURATION if necessary. Also checks to ensure that
1595 * either both DTSTART and DTEND or DTSTART and DURATION are set for each event.
1605 Long dtend = updatedValues.getAsLong(Events.DTEND);
1611 // is dtstart and dtend for non-recurring events or dtstart and duration for recurring
1613 if(dtstart == null || (dtend == null && duration == null)) {
1663 // If dtend exists for this event make sure it's h,m,s are 0.
1664 if (dtend == null && currentTimesCursor != null) {
1669 dtend = Long.valueOf(tempValue);
1671 dtend = null;
1674 if (dtend != null) {
1676 time.set(dtend.longValue());
1681 dtend = time.toMillis(true);
1682 updatedValues.put(Events.DTEND, dtend);
1715 if (duration == null && dtend == null) {
1716 throw new IllegalArgumentException("DTEND and DURATION cannot both be null for " +
1905 * In particular make sure dtend, duration, etc make sense for
1912 boolean hasDtend = values.getAsLong(Events.DTEND) != null;
1921 // dtend is null
1931 values.remove(Events.DTEND);
1938 // dtend is end time of exception event
1941 // lastdate is same as dtend
1953 // dtend is the end time
1956 // lastDate is the same as dtend
2186 Long dtendMillis = values.getAsLong(Events.DTEND);
2322 if (values.containsKey(Events.DTEND) || values.containsKey(Events.RRULE)
2335 // Can we use dtend with a repeating event? What does that even
2337 // NOTE: if the repeating event has a dtend, we convert it to a
2340 Long dtEnd = values.getAsLong(Events.DTEND);
2341 if (dtEnd != null) {
2342 lastMillis = dtEnd;
2440 Long dtendMillis = values.getAsLong(Events.DTEND);
3583 sEventsProjectionMap.put(Events.DTEND, "dtend");
3644 sEventEntitiesProjectionMap.put(Events.DTEND, "dtend");