Searched defs:endIndex (Results 1 - 1 of 1) sorted by last modified time

/packages/apps/Calendar/src/com/android/calendar/
H A DDayView.java2928 int endIndex = endDay - firstDay;
2940 event.right = computeDayLeftPosition(endIndex + 1) - DAY_GAP;
2948 incrementSkipCount(mSkippedAlldayEvents, startIndex, endIndex);
2952 incrementSkipCount(mSkippedAlldayEvents, startIndex, endIndex);
2998 private void incrementSkipCount(int[] counts, int startIndex, int endIndex) { argument
2999 if (counts == null || startIndex < 0 || endIndex > counts.length) {
3002 for (int i = startIndex; i <= endIndex; i++) {

Completed in 29 milliseconds