Searched refs:tokenFromRrule (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Exchange/src/com/android/exchange/utility/
H A DCalendarUtilities.java1076 static String tokenFromRrule(String rrule, String token) { method in class:CalendarUtilities
1116 String count = tokenFromRrule(rrule, "COUNT=");
1120 String interval = tokenFromRrule(rrule, "INTERVAL=");
1124 String until = tokenFromRrule(rrule, "UNTIL=");
1174 String freq = tokenFromRrule(rrule, "FREQ=");
1189 String byDay = tokenFromRrule(rrule, "BYDAY=");
1204 String byMonthDay = tokenFromRrule(rrule, "BYMONTHDAY=");
1220 String byDay = tokenFromRrule(rrule, "BYDAY=");
1221 String bySetpos = tokenFromRrule(rrule, "BYSETPOS=");
1235 String byMonth = tokenFromRrule(rrul
[all...]
/packages/apps/Exchange/tests/src/com/android/exchange/utility/
H A DCalendarUtilitiesTests.java189 assertEquals("DAILY", CalendarUtilities.tokenFromRrule(rrule, "FREQ="));
190 assertEquals("1", CalendarUtilities.tokenFromRrule(rrule, "INTERVAL="));
191 assertEquals("17", CalendarUtilities.tokenFromRrule(rrule, "BYMONTHDAY="));
192 assertEquals("WE,TH,SA", CalendarUtilities.tokenFromRrule(rrule, "BYDAY="));
193 assertNull(CalendarUtilities.tokenFromRrule(rrule, "UNTIL="));

Completed in 61 milliseconds