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

/packages/apps/Exchange/src/com/android/exchange/utility/
H A DCalendarUtilities.java340 // We'll keep splitting the difference until we're within a minute
1093 * Reformat an RRULE style UNTIL to an EAS style until
1096 static String recurrenceUntilToEasUntil(String until) { argument
1099 // Set the time per GMT time in the 'until'
1100 localCalendar.setTimeInMillis(Utility.parseDateTimeToMillis(until));
1106 // EAS ignores the time in 'until'; go figure
1112 * Convenience method to add "count", "interval", and "until" to an EAS calendar stream
1124 String until = tokenFromRrule(rrule, "UNTIL=");
1125 if (until != null) {
1126 s.data(Tags.CALENDAR_RECURRENCE_UNTIL, recurrenceUntilToEasUntil(until));
1275 rruleFromRecurrence(int type, int occurrences, int interval, int dow, int dom, int wom, int moy, String until) argument
[all...]

Completed in 189 milliseconds