Searched defs:until (Results 1 - 1 of 1) sorted by relevance

/packages/apps/Exchange/src/com/android/exchange/utility/
H A DCalendarUtilities.java354 // We'll keep splitting the difference until we're within a minute
1147 * Reformat an RRULE style UNTIL to an EAS style until
1150 static String recurrenceUntilToEasUntil(String until) throws ParseException { argument
1153 // Set the time per GMT time in the 'until'
1154 localCalendar.setTimeInMillis(Utility.parseDateTimeToMillis(until));
1160 // EAS ignores the time in 'until'; go figure
1166 * Convenience method to add "count", "interval", and "until" to an EAS calendar stream
1178 String until = tokenFromRrule(rrule, "UNTIL=");
1179 if (until != null) {
1181 s.data(Tags.CALENDAR_RECURRENCE_UNTIL, recurrenceUntilToEasUntil(until));
1349 rruleFromRecurrence(int type, int occurrences, int interval, int dow, int dom, int wom, int moy, String until) argument
[all...]

Completed in 2020 milliseconds