Home | History | Annotate | Download | only in month

Lines Matching refs:day

72     float mClickedXLocation;                // Used to find which day was clicked
288 protected void onDayTapped(Time day) {
289 setDayParameters(day);
292 // with the selected day's info
293 mController.sendEvent(mContext, EventType.GO_TO, day, day, -1,
297 mController.sendEvent(mContext, EventType.GO_TO, day, day, -1,
304 private void setDayParameters(Time day) {
305 day.timezone = mHomeTimeZone;
308 day.hour = currTime.hour;
309 day.minute = currTime.minute;
310 day.allDay = false;
311 day.normalize(true);
332 // Animate a click - on down: show the selected day in the "clicked" color.
373 Time day = mLongClickedView.getDayFromLocation(mClickedXLocation);
374 if (day != null) {
377 message.obj = day;
413 // Performs the single tap operation: go to the tapped day
419 Time day = mSingleTapUpView.getDayFromLocation(mClickedXLocation);
421 Log.d(TAG, "Touched day at Row=" + mSingleTapUpView.mWeek + " day=" + day.toString());
423 if (day != null) {
424 onDayTapped(day);