Home | History | Annotate | Download | only in calendar

Lines Matching refs:endIndex

2926             int endIndex = endDay - firstDay;
2938 event.right = computeDayLeftPosition(endIndex + 1) - DAY_GAP;
2946 incrementSkipCount(mSkippedAlldayEvents, startIndex, endIndex);
2950 incrementSkipCount(mSkippedAlldayEvents, startIndex, endIndex);
2996 private void incrementSkipCount(int[] counts, int startIndex, int endIndex) {
2997 if (counts == null || startIndex < 0 || endIndex > counts.length) {
3000 for (int i = startIndex; i <= endIndex; i++) {