Home
last modified time | relevance | path

Searched refs:byMonthDay (Results 1 – 1 of 1) sorted by relevance

/packages/apps/Exchange/exchange2/src/com/android/exchange/utility/
DCalendarUtilities.java1221 String byMonthDay = tokenFromRrule(rrule, "BYMONTHDAY="); in recurrenceFromRrule() local
1222 if (byMonthDay != null) { in recurrenceFromRrule()
1225 if (byMonthDay == "-1") { in recurrenceFromRrule()
1233 s.data(Tags.CALENDAR_RECURRENCE_DAYOFMONTH, byMonthDay); in recurrenceFromRrule()
1253 String byMonthDay = tokenFromRrule(rrule, "BYMONTHDAY="); in recurrenceFromRrule() local
1255 if (byMonth == null && byMonthDay == null) { in recurrenceFromRrule()
1261 byMonthDay = Integer.toString(cal.get(Calendar.DAY_OF_MONTH)); in recurrenceFromRrule()
1263 if (byMonth != null && (byMonthDay != null || byDay != null)) { in recurrenceFromRrule()
1269 if (byMonthDay != null) { in recurrenceFromRrule()
1270 s.data(Tags.CALENDAR_RECURRENCE_DAYOFMONTH, byMonthDay); in recurrenceFromRrule()