Home | History | Annotate | Download | only in calendar

Lines Matching full:month

96     // This Time object is used to set the time for the other Month view.
163 * The first Julian day of the current month.
234 mCursor = new DayOfMonthCursor(mViewCalendar.year, mViewCalendar.month,
290 // Switch to a different month
294 time.month += 1;
296 time.month -= 1;
444 // Get the date for the beginning of the month
615 // column are in a different month from the current one, then the
617 // of days in this month, but that is okay because the normalize()
618 // method will adjust the month (and year) if necessary.
705 && mCursor.getMonth() == mToday.month) {
912 calendar.set(Calendar.MONTH, mCursor.getMonth());
915 int month = mCursor.getMonth();
918 // Previous month
919 if (month == 0) {
921 month = 11;
923 month--;
926 // Next month
927 if (month == 11) {
929 month = 0;
931 month++;
934 calendar.set(Calendar.MONTH, month);
955 mCursor = new DayOfMonthCursor(time.year, time.month, time.monthDay,
966 time.month += mCursor.getSelectedMonthOffset();
1250 other.month -= 1;
1263 other.month += 1;
1276 other.month -= 1;
1289 other.month += 1;