Searched defs:endMinute (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Calendar/src/com/android/calendar/
H A DEvent.java555 int endMinute) {
577 if (startDay == julianDay && startTime > endMinute) {
554 intersects(int julianDay, int startMinute, int endMinute) argument
H A DUtils.java890 int endMinute; field in class:Utils.DNASegment
1032 int endMinute = Math.max((event.endDay - firstJulianDay) * DAY_IN_MINUTES
1038 if (endMinute >= WEEK_IN_MINUTES) {
1039 endMinute = WEEK_IN_MINUTES - 1;
1044 if (startMinute < lastSegment.endMinute) {
1047 while (--i >= 0 && endMinute < segments.get(i).startMinute);
1051 for (; i >= 0 && startMinute <= (currSegment = segments.get(i)).endMinute; i--) {
1058 if (endMinute < currSegment.endMinute - minMinutes) {
1060 rhs.endMinute
[all...]

Completed in 61 milliseconds