Lines Matching refs:mCurrentDate

96         mCurrentDate = Calendar.getInstance(locale);
164 mDayPickerView.setDate(mCurrentDate.getTimeInMillis());
170 mYearPickerView.setYear(mCurrentDate.get(Calendar.YEAR));
238 mCurrentDate.setTimeInMillis(day.getTimeInMillis());
254 final int day = mCurrentDate.get(Calendar.DAY_OF_MONTH);
255 final int month = mCurrentDate.get(Calendar.MONTH);
258 mCurrentDate.set(Calendar.DAY_OF_MONTH, daysInMonth);
261 mCurrentDate.set(Calendar.YEAR, year);
313 final String year = mYearFormat.format(mCurrentDate.getTime());
316 final String monthDay = mMonthDayFormat.format(mCurrentDate.getTime());
328 mDayPickerView.setDate(mCurrentDate.getTimeInMillis());
340 final int year = mCurrentDate.get(Calendar.YEAR);
378 mCurrentDate.set(Calendar.YEAR, year);
379 mCurrentDate.set(Calendar.MONTH, month);
380 mCurrentDate.set(Calendar.DAY_OF_MONTH, dayOfMonth);
385 final int year = mCurrentDate.get(Calendar.YEAR);
389 final int monthOfYear = mCurrentDate.get(Calendar.MONTH);
390 final int dayOfMonth = mCurrentDate.get(Calendar.DAY_OF_MONTH);
399 mDayPickerView.setDate(mCurrentDate.getTimeInMillis());
411 return mCurrentDate.get(Calendar.YEAR);
416 return mCurrentDate.get(Calendar.MONTH);
421 return mCurrentDate.get(Calendar.DAY_OF_MONTH);
432 if (mCurrentDate.before(mTempDate)) {
433 mCurrentDate.setTimeInMillis(minDate);
454 if (mCurrentDate.after(mTempDate)) {
455 mCurrentDate.setTimeInMillis(maxDate);
480 return mCurrentDate.getFirstDayOfWeek();
529 final int year = mCurrentDate.get(Calendar.YEAR);
530 final int month = mCurrentDate.get(Calendar.MONTH);
531 final int day = mCurrentDate.get(Calendar.DAY_OF_MONTH);
553 mCurrentDate.set(ss.getSelectedYear(), ss.getSelectedMonth(), ss.getSelectedDay());