Lines Matching full:date
49 // Day view: show day of the week + full date underneath
52 // Agenda view: show day of the week + full date underneath
66 // The current selected event's time, used to calculate the date and day of the week
76 private final boolean mShowDate; // Spinner mode indicator (view name or view name with date)
119 // Sets a thread to run 1 second after midnight and update the current date
120 // This is used to display correctly the date of yesterday/today/tomorrow
180 TextView date = (TextView) v.findViewById(R.id.top_button_date);
186 date.setText(buildFullDate());
195 date.setText(buildMonthYearDate());
199 date.setText(buildMonthYearDate());
204 date.setText(buildFullDate());
263 TextView date = (TextView)v.findViewById(R.id.button_date);
268 date.setText(buildMonthDayDate());
274 date.setText(buildWeekDate());
280 date.setText(buildMonthDate());
286 date.setText(buildMonthDayDate());
303 // Update the date that is displayed on buttons
340 // Full date: Month,day Year
347 String date = DateUtils.formatDateRange(mContext, mFormatter, mMilliTime, mMilliTime,
349 return date;
354 String date = DateUtils.formatDateRange(
361 return date;
366 String date = DateUtils.formatDateRange(mContext, mFormatter, mMilliTime, mMilliTime,
368 return date;
373 String date = DateUtils.formatDateRange(
380 return date;
414 String date = DateUtils.formatDateRange(mContext, mFormatter, weekStartTime,
416 return date;