HomeSort by relevance Sort by last modified time
    Searched defs:DAYS_IN_WEEK (Results 1 - 2 of 2) sorted by null

  /cts/tests/tests/location/src/android/location/cts/psedorange/
GpsTime.java 39 public static final int DAYS_IN_WEEK = 7;
  /frameworks/base/core/java/android/widget/
SimpleMonthView.java 62 private static final int DAYS_IN_WEEK = 7;
197 for (int i = 0; i < DAYS_IN_WEEK; i++) {
198 mDayOfWeekLabels[i] = tinyWeekdayNames[(mWeekStart + i - 1) % DAYS_IN_WEEK + 1];
486 mHighlightedDay = row == 0 ? 1 : (row * DAYS_IN_WEEK) - offset + 1;
491 mHighlightedDay = Math.min(mDaysInMonth, (row * DAYS_IN_WEEK) - offset);
497 mHighlightedDay = day < 1 ? day + DAYS_IN_WEEK : day;
502 final int maxWeeks = (offset + mDaysInMonth) / DAYS_IN_WEEK;
503 final int day = col - offset + (DAYS_IN_WEEK * maxWeeks) + 1;
504 mHighlightedDay = day > mDaysInMonth ? day - DAYS_IN_WEEK : day;
536 final int maxRows = (maxDay / DAYS_IN_WEEK) - ((maxDay % DAYS_IN_WEEK == 0) ? 1 : 0)
    [all...]

Completed in 676 milliseconds