Home | History | Annotate | Download | only in calendar

Lines Matching refs:date

47     private static class Date extends BaseCalendar.Date {
48 protected Date() {
53 protected Date(TimeZone zone) {
58 public Date setEra(Era era) {
121 public Date getCalendarDate() {
125 public Date getCalendarDate(long millis) {
129 public Date getCalendarDate(long millis, CalendarDate date) {
130 return (Date) super.getCalendarDate(millis, date);
133 public Date getCalendarDate(long millis, TimeZone zone) {
137 public Date newCalendarDate() {
138 return new Date();
141 public Date newCalendarDate(TimeZone zone) {
142 return new Date(zone);
148 public long getFixedDate(int jyear, int month, int dayOfMonth, BaseCalendar.Date cache) {
185 public void getCalendarDateFromFixedDate(CalendarDate date, long fixedDate) {
186 Date jdate = (Date) date;
217 * Returns the normalized Julian year number of the given fixed date.
224 public int getDayOfWeek(CalendarDate date) {
227 long fixedDate = getFixedDate(date);