Home | History | Annotate | Download | only in calendar

Lines Matching full:startindex

2207         int startIndex = -1;
2211 startIndex = 0;
2214 startIndex = todayIndex + 1;
2217 if (startIndex >= 0) {
2221 r.left = computeDayLeftPosition(startIndex) + 1;
2804 int startIndex = startDay - firstDay;
2816 event.left = computeDayLeftPosition(startIndex);
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++) {