Lines Matching refs:startIndex
2319 int startIndex = -1;
2324 startIndex = 0;
2327 startIndex = todayIndex + 1;
2330 if (startIndex >= 0) {
2334 r.left = computeDayLeftPosition(startIndex) + 1;
2930 int startIndex = startDay - firstDay;
2942 event.left = computeDayLeftPosition(startIndex);
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++) {