Home | History | Annotate | Download | only in calendarcommon

Lines Matching defs:recurrence

33     // Test a recurrence
36 String recurrence = "DTSTART;TZID=America/New_York:20080221T070000\n"
40 verifyPopulateContentValues(recurrence, "FREQ=DAILY;UNTIL=20080222T000000Z", null,
47 String recurrence = "DTSTART;VALUE=DATE:20090821\nDTEND;VALUE=DATE:20090822\n"
49 verifyPopulateContentValues(recurrence, "FREQ=YEARLY;WKST=SU", null,
56 String recurrence = "DTSTART;VALUE=DATE:20090821\nDTEND;VALUE=DATE:20090823\n"
58 verifyPopulateContentValues(recurrence, "FREQ=YEARLY;WKST=SU", null,
65 String recurrence = "DTSTART;VALUE=DATE:20090821\n"
69 verifyPopulateContentValues(recurrence, "FREQ=YEARLY;WKST=SU\nFREQ=MONTHLY;COUNT=3", null,
77 String recurrence = "DTSTART;TZID=America/Los_Angeles:20090821T010203\n"
80 verifyPopulateContentValues(recurrence, null,
90 String recurrence = "DTSTART;TZID=America/Los_Angeles:20090821T070000\n"
93 verifyPopulateContentValues(recurrence, "FREQ=YEARLY", null,
101 verifyPopulateContentValues(recurrence, "FREQ=YEARLY", null,
107 // Test a failure to parse the recurrence data
110 String recurrence = "DTSTART;TZID=GMT+05:30:20080221T070000\n"
114 verifyPopulateContentValues(recurrence, "FREQ=DAILY;UNTIL=20080222T000000Z", null,
120 String recurrence = "DTSTART;TZID=America/New_York:20080221T070000\n"
124 verifyPopulateContentValues(recurrence, "FREQ=DAILY;UNTIL=20080222T000000Z", null,
129 private void verifyPopulateContentValues(String recurrence, String rrule, String rdate,
135 ICalendar.parseComponent(recurrenceComponent, recurrence);