Home | History | Annotate | Download | only in calendar

Lines Matching refs:startIndex

2314             int startIndex = -1;
2319 startIndex = 0;
2322 startIndex = todayIndex + 1;
2325 if (startIndex >= 0) {
2329 r.left = computeDayLeftPosition(startIndex) + 1;
2925 int startIndex = startDay - firstDay;
2937 event.left = computeDayLeftPosition(startIndex);
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++) {