Home | History | Annotate | Download | only in calendar

Lines Matching refs:startIndex

2316             int startIndex = -1;
2321 startIndex = 0;
2324 startIndex = todayIndex + 1;
2327 if (startIndex >= 0) {
2331 r.left = computeDayLeftPosition(startIndex) + 1;
2927 int startIndex = startDay - firstDay;
2939 event.left = computeDayLeftPosition(startIndex);
2948 incrementSkipCount(mSkippedAlldayEvents, startIndex, endIndex);
2952 incrementSkipCount(mSkippedAlldayEvents, startIndex, endIndex);
2998 private void incrementSkipCount(int[] counts, int startIndex, int endIndex) {
2999 if (counts == null || startIndex < 0 || endIndex > counts.length) {
3002 for (int i = startIndex; i <= endIndex; i++) {