Searched defs:setDate (Results 1 - 9 of 9) sorted by relevance

/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
H A DDeliveryInd.java62 public void setDate(long value) { method in class:DeliveryInd
H A DReadOrigInd.java59 public void setDate(long value) { method in class:ReadOrigInd
H A DMultimediaMessagePdu.java147 public void setDate(long value) { method in class:MultimediaMessagePdu
H A DReadRecInd.java71 public void setDate(long value) { method in class:ReadRecInd
/frameworks/base/core/java/android/widget/
H A DCalendarViewMaterialDelegate.java56 final long setDate = MathUtils.constrain(System.currentTimeMillis(), minDate, maxDate);
68 mDayPickerView.setDate(setDate, false, true);
223 public void setDate(long date) { method in class:CalendarViewMaterialDelegate
224 mDayPickerView.setDate(date, true, false);
228 public void setDate(long date, boolean animate, boolean center) { method in class:CalendarViewMaterialDelegate
229 mDayPickerView.setDate(date, animate, center);
H A DCalendarView.java472 * @see #setDate(long, boolean, boolean)
476 public void setDate(long date) { method in class:CalendarView
477 mDelegate.setDate(date);
494 public void setDate(long date, boolean animate, boolean center) { method in class:CalendarView
495 mDelegate.setDate(date, animate, center);
560 void setDate(long date); method in interface:CalendarView.CalendarViewDelegate
561 void setDate(long date, boolean animate, boolean center); method in interface:CalendarView.CalendarViewDelegate
H A DDayPickerView.java90 * {@link #setDate(long, boolean, boolean)}.
94 public void setDate(long timeInMillis) { method in class:DayPickerView
95 setDate(timeInMillis, false, true);
98 public void setDate(long timeInMillis, boolean animate, boolean forceScroll) { method in class:DayPickerView
H A DDatePicker.java639 setDate(mTempDate.get(Calendar.YEAR), mTempDate.get(Calendar.MONTH),
653 setDate(year, month, monthDay);
732 setDate(year, monthOfYear, dayOfMonth);
743 setDate(year, month, dayOfMonth);
872 setDate(ss.mYear, ss.mMonth, ss.mDay);
1007 private void setDate(int year, int month, int dayOfMonth) { method in class:DatePicker.DatePickerSpinnerDelegate
1069 mCalendarView.setDate(mCurrentDate.getTimeInMillis(), false, false);
H A DCalendarViewLegacyDelegate.java509 setDate(mTempDate.getTimeInMillis());
514 // note that calling setDate will not work since the date is the same
535 setDate(mMaxDate.getTimeInMillis());
540 // note that calling setDate will not work since the date is the same
582 public void setDate(long date) { method in class:CalendarViewLegacyDelegate
583 setDate(date, false, false);
587 public void setDate(long date, boolean animate, boolean center) { method in class:CalendarViewLegacyDelegate

Completed in 1084 milliseconds