Home | History | Annotate | Download | only in calendar

Lines Matching full:endindex

2931             int endIndex = endDay - firstDay;
2943 event.right = computeDayLeftPosition(endIndex + 1) - DAY_GAP;
2951 incrementSkipCount(mSkippedAlldayEvents, startIndex, endIndex);
2955 incrementSkipCount(mSkippedAlldayEvents, startIndex, endIndex);
3001 private void incrementSkipCount(int[] counts, int startIndex, int endIndex) {
3002 if (counts == null || startIndex < 0 || endIndex > counts.length) {
3005 for (int i = startIndex; i <= endIndex; i++) {