Home
last modified time | relevance | path

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

/frameworks/opt/calendar/src/com/android/calendarcommon2/
DEventRecurrence.java58 public int[] bysecond; field in EventRecurrence
371 appendNumbers(s, ";BYSECOND=", this.bysecondCount, this.bysecond); in toString()
485 arraysEqual(bysecond, bysecondCount, er.bysecond, er.bysecondCount) && in equals()
776 int[] bysecond = parseNumberList(value, 0, 59, true); in parsePart() local
777 er.bysecond = bysecond; in parsePart()
778 er.bysecondCount = bysecond.length; in parsePart()
DRecurrenceProcessor.java275 found = listContains(r.bysecond, r.bysecondCount, in filter()
973 ? r.bysecond[secondIndex] in expand()
/frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
DEventRecurrenceTest.java720 int[] bysecond, int[] byminute, int[] byhour, in verifyRecurType() argument
740 System.out.println(" bysecond=" + Arrays.toString(bysecond)); in verifyRecurType()
753 cmp(eventRecurrence.bysecondCount, eventRecurrence.bysecond, bysecond, "bysecond"); in verifyRecurType()
772 System.out.println(" bysecond=" + Arrays.toString(er.bysecond)); in print()