Home | History | Annotate | Download | only in calendarcommon2

Lines Matching defs:rrule

55         String rruleStr = values.getAsString(CalendarContract.Events.RRULE);
65 * CalendarProvider. The cursor must contain the RRULE, RDATE, EXRULE,
68 * @param cursor The cursor containing the RRULE, RDATE, EXRULE, and EXDATE
73 int rruleColumn = cursor.getColumnIndex(CalendarContract.Events.RRULE);
99 EventRecurrence rrule = new EventRecurrence();
100 rrule.parse(rruleStrs[i]);
101 rrules[i] = rrule;
180 * Populates the database map of values with the appropriate RRULE, RDATE,
187 * one of DTEND/DURATION, and one of RRULE/RDATE. Returns false if
211 String rrule = flattenProperties(component, "RRULE");
218 ((TextUtils.isEmpty(rrule))&&
222 + "or RRULE/RDATE: "
240 values.put(CalendarContract.Events.RRULE, rrule);
262 int rruleColumn = cursor.getColumnIndex(CalendarContract.Events.RRULE);
318 addPropertiesForRuleStr(component, "RRULE", rruleStr);
333 final String rruleStr = values.getAsString(CalendarContract.Events.RRULE);
377 addPropertiesForRuleStr(component, "RRULE", rruleStr);
391 for (String rrule : rrules) {
393 prop.setValue(rrule);