HomeSort by relevance Sort by last modified time
    Searched refs:mMonth (Results 1 - 7 of 7) sorted by null

  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/ui/
DateTileView.java 52 private int mMonth = -1;
94 if (month == mMonth) {
95 mMonthTextView.setText(mMonthNames[mMonth]);
98 if (month != mMonth) {
99 mMonth = month;
100 mMonthTextView.setText(mMonthNames[mMonth]);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
DatePicker.java 66 private int mMonth;
142 mMonth = newVal - 1;
272 if (mYear != year || mMonth != monthOfYear || mDay != dayOfMonth) {
274 mMonth = monthOfYear;
289 private final int mMonth;
301 mMonth = month;
313 mMonth = in.readInt();
324 return mMonth;
343 dest.writeInt(mMonth);
376 return new SavedState(superState, mYear, mMonth, mDay, mHasYear, mYearOptional)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/datepicker/
DatePicker.java 76 private int mMonth;
152 mMonth = newVal - 1;
283 if (mYear != year || mMonth != monthOfYear || mDay != dayOfMonth) {
285 mMonth = monthOfYear;
300 private final int mMonth;
312 mMonth = month;
324 mMonth = in.readInt();
335 return mMonth;
354 dest.writeInt(mMonth);
389 return new SavedState(superState, mYear, mMonth, mDay, mHasYear, mYearOptional)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
DateWidgets1.java 49 private int mMonth;
83 mMonth = c.get(Calendar.MONTH);
100 mYear, mMonth, mDay);
112 ((DatePickerDialog) dialog).updateDate(mYear, mMonth, mDay);
121 .append(mMonth + 1).append("-")
134 mMonth = monthOfYear;
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
SimpleMonthView.java 146 protected int mMonth;
343 mMonth = params.get(VIEW_PARAMS_MONTH);
352 mCalendar.set(Calendar.MONTH, mMonth);
363 mNumCells = Utils.getDaysInMonth(mMonth, mYear);
391 mMonth == today.month &&
498 return new CalendarDay(mYear, mMonth, day);
540 if ((day.year != mYear) || (day.month != mMonth) || (day.day > mNumCells)) {
631 item = new CalendarDay(mYear, mMonth, id);
  /frameworks/base/core/java/android/widget/
DatePicker.java 566 setDate(ss.mYear, ss.mMonth, ss.mDay);
774 private final int mMonth;
784 mMonth = month;
794 mMonth = in.readInt();
802 dest.writeInt(mMonth);
  /frameworks/opt/calendar/src/com/android/calendarcommon2/
RecurrenceProcessor.java 426 mMonth = -1;
463 if (realYear != mYear || realMonth != mMonth) {
472 + " realMonth=" + realMonth + " mMonth=" + mMonth);
476 mMonth = realMonth;
616 private int mMonth;
    [all...]

Completed in 224 milliseconds