Home | History | Annotate | Download | only in calendarcommon2

Lines Matching refs:recur

524      * @param recur The recurrence rule to parse (in un-folded form).
526 public void parse(String recur) {
530 * recur = "FREQ"=freq *(
531 * ; either UNTIL or COUNT may appear in a 'recur',
532 * ; but UNTIL and COUNT MUST NOT occur in the same 'recur'
596 parts = recur.toUpperCase().split(";");
598 parts = recur.split(";");
650 throw new InvalidFormatException("Must not specify both UNTIL and COUNT: " + recur);
652 Log.w(TAG, "Warning: rrule has both UNTIL and COUNT: " + recur);