Searched refs:mNumCells (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DSimpleMonthView.java122 private int mNumCells = mNumDays; field in class:SimpleMonthView
362 mNumCells = getDaysInMonth(mMonth, mYear);
363 for (int i = 0; i < mNumCells; i++) {
405 int dividend = (offset + mNumCells) / mNumDays;
406 int remainder = (offset + mNumCells) % mNumDays;
467 for (int day = 1; day <= mNumCells; day++) {
513 if (day < 1 || day > mNumCells) {
567 (day.get(Calendar.DAY_OF_MONTH) > mNumCells)) {
614 for (int day = 1; day <= mNumCells; day++) {
H A DCalendarView.java1814 private int mNumCells; field in class:CalendarView.LegacyCalendarViewDelegate.WeekView
1843 mNumCells = mShowWeekNumber ? mDaysPerWeek + 1 : mDaysPerWeek;
1851 mDayNumbers = new String[mNumCells];
1852 mFocusDay = new boolean[mNumCells];
1870 for (; i < mNumCells; i++) {
1951 end = mShowWeekNumber ? mWidth - mWidth / mNumCells : mWidth;
1953 start = mShowWeekNumber ? mWidth / mNumCells : 0;
2003 mTempRect.left = mShowWeekNumber ? mWidth / mNumCells : 0;
2010 mTempRect.right = mShowWeekNumber ? mWidth - mWidth / mNumCells : mWidth;
2026 final int nDays = mNumCells;
[all...]
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
H A DMonthView.java166 protected int mNumCells = mNumDays; field in class:MonthView
378 mNumCells = Utils.getDaysInMonth(mMonth, mYear);
379 for (int i = 0; i < mNumCells; i++) {
403 int dividend = (offset + mNumCells) / mNumDays;
404 int remainder = (offset + mNumCells) % mNumDays;
483 for (int dayNumber = 1; dayNumber <= mNumCells; dayNumber++) {
535 if (day < 1 || day > mNumCells) {
684 if ((day.year != mYear) || (day.month != mMonth) || (day.day > mNumCells)) {
731 for (int day = 1; day <= mNumCells; day++) {

Completed in 284 milliseconds