Lines Matching defs:date

33  * default to the date the Gregorian calendar was instituted (October 15, 1582
34 * in some countries, later in others). The cutover date may be changed by the
54 * date, leap year rules were applied irregularly, and before 45 BC the Julian
125 * // and the current date and time
227 * Constructs a new {@code GregorianCalendar} initialized to the current date and
236 * {@code TimeZone} and {@code Locale} on the specified date.
251 * Constructs a new {@code GregorianCalendar} initialized to the specified date and
271 * Constructs a new {@code GregorianCalendar} initialized to the specified date and
299 * Constructs a new {@code GregorianCalendar} initialized to the current date and
310 * Constructs a new {@code GregorianCalendar} initialized to the current date and
321 * Constructs a new {@code GregorianCalendar} initialized to the current date and
487 int date = dayOfYear - daysInYear(leapYear, month);
488 if (date > daysInMonth(leapYear, month)) {
489 date -= daysInMonth(leapYear, month);
494 fields[YEAR], month, date, fields[DAY_OF_WEEK], millis);
518 date = dayOfYear - daysInYear(leapYear, month);
519 if (date > daysInMonth(leapYear, month)) {
520 date -= daysInMonth(leapYear, month);
544 fields[DATE] = date;
545 fields[DAY_OF_WEEK_IN_MONTH] = (date - 1) / 7 + 1;
546 fields[WEEK_OF_MONTH] = (date - 1 + mod7(days - date - 2
931 * Gets the minimum value of the specified field for the current date. For
958 * Returns the gregorian change date of this calendar. This is the date on
961 * @return a {@code Date} which represents the gregorian change date.
978 // the gregorian change date have been reset.
1050 int date = dayOfYear - daysInYear(leapYear, month);
1051 if (date > daysInMonth(leapYear, month)) {
1052 date -= daysInMonth(leapYear, month);
1056 return timeZone.getOffset(AD, year, month, date, dayOfWeek, millis);
1098 * date. Other fields will be adjusted as required to maintain a consistent
1099 * date.
1213 * date. Other fields will be adjusted as required to maintain a consistent
1214 * date. For example, March 31 will roll to April 30 when rolling the month
1231 * Sets the gregorian change date of this calendar.
1233 public void setGregorianChange(Date date) {
1234 gregorianCutover = date.getTime();
1236 cal.setTime(date);