HomeSort by relevance Sort by last modified time
    Searched full:dtend (Results 1 - 25 of 32) sorted by null

1 2

  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
SyncCalendarTest.java 63 long dtEnd = time.toMillis(false) + ONE_HOUR_IN_MILLIS;
64 EventInfo allDayEvent = new EventInfo("allday0", dtStart, dtEnd, true);
83 long dtEnd = cursor.getLong(cursor.getColumnIndex("dtend"));
85 EventInfo event = new EventInfo(newTitle, dtStart, dtEnd, false);
127 assertEquals(cursor.getLong(cursor.getColumnIndex("dtend")), newDtEnd);
142 long dtEnd = cursor.getLong(cursor.getColumnIndex("dtend"));
145 EventInfo event = new EventInfo(title, dtStart, dtEnd, false, newDescription);
CalendarDatabaseHelperTest.java 83 // TODO: do we need both dtend and duration?
104 "dtend INTEGER," + // millis since epoch
292 "dtend INTEGER," + // millis since epoch
323 mBadDb.execSQL("INSERT INTO Events (_id,dtstart,dtend,duration," +
329 mGoodDb.execSQL("INSERT INTO Events (_id,dtstart,dtend,duration," +
336 mBadDb.execSQL("INSERT INTO Events (_id,dtstart,dtend,duration," +
342 // April 5th midnight with 1 day duration, if only dtend was wrong we wouldn't fix it, but
343 // if anything else is wrong we clear dtend to be sure.
345 "_id,dtstart,dtend,duration," +
357 mBadDb.execSQL("INSERT INTO Events (_id,dtstart,dtend,duration,dtstart2,dtend2,"
    [all...]
ICalendarTest.java 167 "DTEND:19970715T035959Z\n" +
179 assertEquals(1, event.getProperties("DTEND").size());
180 assertEquals(0, event.getFirstProperty("DTEND").getParameterNames().size());
181 assertEquals("19970715T035959Z", event.getFirstProperty("DTEND").getValue());
CalendarSyncTestingBase.java 115 m.put(CalendarContract.Events.DTEND, event.mDtend);
144 values.put(CalendarContract.Events.DTEND, event.mDtend);
CalendarProvider2Test.java 1262 long dtend = cursor.getLong(2); local
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/eas/
EasSendMeetingResponse.java 168 final String dtEnd = meetingInfo.get(MeetingInfo.MEETING_DTEND);
169 if (TextUtils.isEmpty(dtStamp) || TextUtils.isEmpty(dtStart) || TextUtils.isEmpty(dtEnd)) {
170 LogUtils.w(TAG, "blank dtStamp %s dtStart %s dtEnd %s", dtStamp, dtStart, dtEnd);
185 entityValues.put(CalendarContract.Events.DTEND,
186 Utility.parseEmailDateTimeToMillis(dtEnd));
188 LogUtils.w(TAG, "Parse error for DTSTART/DTEND tags.", e);
EasSyncCalendar.java 459 // Determine endTime; it's either provided as DTEND or we calculate using DURATION
462 if (entityValues.containsKey(Events.DTEND)) {
463 endTime = entityValues.getAsLong(Events.DTEND);
    [all...]
  /frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
RecurrenceSetTest.java 37 + "DTEND;TZID=America/New_York:20080221T190000\n"
91 + "DTEND;TZID=America/New_York:20090821T110000\n"
99 + "DTEND;TZID=America/Los_Angeles:20090821T080000\n"
111 + "DTEND;TZID=GMT+05:30:20080221T190000\n"
121 + "DTEND;TZID=GMT+05:30:20080221T190000\n"
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
MeetingInfo.java 25 public static final String MEETING_DTEND = "DTEND";
  /cts/tests/tests/calendarcommon/src/com/android/calendarcommon2/
ICalendar.java 78 * A property within an iCalendar component (e.g., DTSTART, DTEND, etc.,
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarDatabaseHelper.java 93 Events.DTEND + "," +
520 // TODO: do we need both dtend and duration?
538 // dtend in millis since epoch
539 CalendarContract.Events.DTEND + " INTEGER," +
605 // dtend in millis since epoch
606 + "dtend INTEGER,"
2539 Long dtend; local
2742 long dtend = cursor.getLong(2); local
    [all...]
CalendarProvider2.java 161 Events.DTEND,
401 // dtend -- set from duration as part of creating the exception
731 values.put(Events.DTEND, get2445ToMillis(timezone, dtEnd2445));
1552 Long dtend = values.getAsLong(Events.DTEND); local
    [all...]
CalendarInstancesHelper.java 111 Events.DTEND,
170 int dtendColumn = entries.getColumnIndex(Events.DTEND);
311 // compute the duration from dtend, if we can.
681 Long dtendMillis = values.getAsLong(Events.DTEND);
    [all...]
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
LinearSmoothScroller.java 275 final int dtEnd = boxEnd - viewEnd;
276 if (dtEnd < 0) {
277 return dtEnd;
  /packages/apps/Exchange/src/com/android/exchange/adapter/
CalendarSyncParser.java 272 * Set DTSTART, DTEND, DURATION and EVENT_TIMEZONE as appropriate for the given Event
274 * Events that aren't exceptions MUST have either 1) a DTEND or 2) a DURATION
332 // For other events, set DTEND and LAST_DATE
334 cv.put(Events.DTEND, endTime);
    [all...]
  /packages/apps/Exchange/tests/src/com/android/exchange/utility/
CalendarUtilitiesTests.java 264 entityValues.put(Events.DTEND,
351 entityValues.remove(Events.DTEND);
405 assertEquals("20100413", vevent.get("DTEND;VALUE=DATE"));
467 assertNotNull(vevent.get("DTEND"));
469 assertNull(vevent.get("DTEND;VALUE=DATE"));
540 // We should have DTSTART/DTEND with time zone
542 assertNotNull(vevent.get("DTEND;TZID=" + timeZone.getID()));
544 assertNull(vevent.get("DTEND"));
546 assertNull(vevent.get("DTEND;VALUE=DATE"));
    [all...]
  /frameworks/opt/calendar/src/com/android/calendarcommon2/
RecurrenceSet.java 187 * one of DTEND/DURATION, and one of RRULE/RDATE. Returns false if
221 Log.d(TAG, "Recurrence missing DTSTART, DTEND/DURATION, "
475 // must compute a duration from the DTEND
477 component.getFirstProperty("DTEND");
479 // no DURATION, no DTEND: 0 second duration
ICalendar.java 221 * A property within an iCalendar component (e.g., DTSTART, DTEND, etc.,
228 public static final String DTEND = "DTEND";
  /packages/apps/Contacts/src/com/android/contacts/interactions/
CalendarInteraction.java 165 return mValues.getAsLong(Attendees.DTEND);
  /packages/apps/Calendar/tests/src/com/android/calendar/event/
EditEventHelperTest.java 84 "1272931200000", // 8 dtend, Tuesday, May 4th midnight UTC
261 mExpectedValues.put(Events.DTEND, TEST_END + dayInMs);
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
CalendarTest.java 319 Events.DTEND,
379 values.put(Events.DTEND, seed + DateUtils.HOUR_IN_MILLIS);
386 // Must be 0 or dtstart/dtend will get adjusted.
456 // Add in the recurrence-specific fields, and drop DTEND.
459 values.remove(Events.DTEND);
488 values.put(Events.DTEND, seed + DateUtils.HOUR_IN_MILLIS);
2466 long dtend = eventValues.getAsLong(Events.DTEND); local
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/event/
EditEventHelper.java 77 Events.DTEND, // 8
646 values.remove(Events.DTEND);
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
GoogleCalendarUriIntentFilter.java 54 Events.DTEND, // 2
DeleteEventHelper.java 385 values.put(Events.DTEND, mEndMillis);
  /frameworks/base/docs/html/guide/topics/providers/
calendar-provider.jd 424 <td>{@link android.provider.CalendarContract.EventsColumns#DTEND}</td>
524 android.provider.CalendarContract.EventsColumns#DTEND}. </li>
535 android.provider.CalendarContract.EventsColumns#RRULE} in conjunction with {@link android.provider.CalendarContract.EventsColumns#DTSTART} and {@link android.provider.CalendarContract.EventsColumns#DTEND}, and the Calendar application
561 values.put(Events.DTEND, endMillis);
    [all...]

Completed in 1853 milliseconds

1 2