Home | History | Annotate | Download | only in calendar

Lines Matching full:endindex

2805             int endIndex = endDay - firstDay;
2817 event.right = computeDayLeftPosition(endIndex + 1) - DAY_GAP;
2825 incrementSkipCount(mSkippedAlldayEvents, startIndex, endIndex);
2829 incrementSkipCount(mSkippedAlldayEvents, startIndex, endIndex);
2870 private void incrementSkipCount(int[] counts, int startIndex, int endIndex) {
2871 if (counts == null || startIndex < 0 || endIndex > counts.length) {
2874 for (int i = startIndex; i <= endIndex; i++) {