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

/packages/apps/Calendar/src/com/android/calendar/
H A DUtils.java106 static int WORK_DAY_END_MINUTES = 20 * 60; field in class:Utils
107 static int WORK_DAY_END_LENGTH = (24 * 60) - WORK_DAY_END_MINUTES;
701 * <li>Events between WORK_DAY_END_MINUTES and the following midnight are
703 * <li>Events between WORK_DAY_START_MINUTES and WORK_DAY_END_MINUTES use
728 WORK_DAY_END_MINUTES = res.getInteger(R.integer.work_end_minutes);
729 WORK_DAY_END_LENGTH = DAY_IN_MINUTES - WORK_DAY_END_MINUTES;
730 WORK_DAY_MINUTES = WORK_DAY_END_MINUTES - WORK_DAY_START_MINUTES;
806 } else if (event.endTime > WORK_DAY_END_MINUTES) {
1008 } else if (minute < WORK_DAY_END_MINUTES) {
1012 y = remainderHeight + workDayHeight + (minute - WORK_DAY_END_MINUTES) * remainderHeigh
[all...]

Completed in 24 milliseconds