HomeSort by relevance Sort by last modified time
    Searched defs:bysetpos (Results 1 - 2 of 2) sorted by null

  /frameworks/opt/calendar/src/com/android/calendarcommon2/
EventRecurrence.java 75 public int[] bysetpos; field in class:EventRecurrence
94 sParsePartMap.put("BYSETPOS", new ParseBySetPos());
391 appendNumbers(s, ";BYSETPOS=", this.bysetposCount, this.bysetpos);
494 arraysEqual(bysetpos, bysetposCount, er.bysetpos, er.bysetposCount);
549 * ( ";" "BYSETPOS" "=" bysplist ) /
887 /** parses BYSETPOS=bysplist *
890 int[] bysetpos = parseNumberList(value, Integer.MIN_VALUE, Integer.MAX_VALUE, true); local
    [all...]
RecurrenceProcessor.java 284 bysetpos:
285 // BYSETPOS - we only handle rules like FREQ=MONTHLY;BYDAY=MO,TU,WE,TH,FR;BYSETPOS=-1
291 Log.v(TAG, "BYSETPOS not supported with these rules: " + r);
293 break bysetpos; local
302 Log.v(TAG, "BYSETPOS not supported with these rules: " + r);
305 // BYSETPOS was defined but we don't know how to handle it. Do no filtering based
314 * Filters out instances that don't match the BYSETPOS clause of a monthly recurrence rule.
362 * Now walk through the BYSETPOS list and see if the instance is equal to any of the
366 int index = r.bysetpos[i]
    [all...]

Completed in 164 milliseconds