Home
last modified time | relevance | path

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

/frameworks/opt/calendar/src/com/android/calendarcommon2/
DEventRecurrence.java62 public int[] byhour; field in EventRecurrence
373 appendNumbers(s, ";BYSECOND=", this.byhourCount, this.byhour); in toString()
487 arraysEqual(byhour, byhourCount, er.byhour, er.byhourCount) && in equals()
794 int[] byhour = parseNumberList(value, 0, 23, true); in parsePart() local
795 er.byhour = byhour; in parsePart()
796 er.byhourCount = byhour.length; in parsePart()
DRecurrenceProcessor.java257 found = listContains(r.byhour, r.byhourCount, in filter()
957 ? r.byhour[hourIndex] in expand()
/frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
DEventRecurrenceTest.java720 int[] bysecond, int[] byminute, int[] byhour, in verifyRecurType() argument
742 System.out.println(" byhour=" + Arrays.toString(byhour)); in verifyRecurType()
755 cmp(eventRecurrence.byhourCount, eventRecurrence.byhour, byhour, "byhour"); in verifyRecurType()
776 System.out.println(" byhour=" + Arrays.toString(er.byhour)); in print()