Home | History | Annotate | Download | only in calendar

Lines Matching full:startindex

2226             int startIndex = -1;
2231 startIndex = 0;
2234 startIndex = todayIndex + 1;
2237 if (startIndex >= 0) {
2241 r.left = computeDayLeftPosition(startIndex) + 1;
2831 int startIndex = startDay - firstDay;
2843 event.left = computeDayLeftPosition(startIndex);
2852 incrementSkipCount(mSkippedAlldayEvents, startIndex, endIndex);
2856 incrementSkipCount(mSkippedAlldayEvents, startIndex, endIndex);
2897 private void incrementSkipCount(int[] counts, int startIndex, int endIndex) {
2898 if (counts == null || startIndex < 0 || endIndex > counts.length) {
2901 for (int i = startIndex; i <= endIndex; i++) {