Lines Matching refs:minute

92      * @param minute
93 * the minute of the hour, 0 - 59.
100 public Date(int year, int month, int day, int hour, int minute) {
102 cal.set(1900 + year, month, day, hour, minute);
118 * @param minute
119 * the minute of the hour, 0 - 59.
121 * the second of the minute, 0 - 59.
128 public Date(int year, int month, int day, int hour, int minute, int second) {
130 cal.set(1900 + year, month, day, hour, minute, second);
283 * Returns the gregorian calendar minute of the hour for this {@code Date} object.
309 * Returns the gregorian calendar second of the minute for this {@code Date} object.
407 int hour = -1, minute = -1, second = -1, zoneOffset = 0;
461 } else if (minute == -1) {
462 minute = digit;
476 if (hour != -1 && minute == -1) {
477 minute = digit;
478 } else if (minute != -1 && second == -1) {
549 if (minute == -1) {
550 minute = 0;
563 minute -= zoneOffset % 100;
567 return UTC(year - 1900, month, date, hour, minute, second);
569 return new Date(year - 1900, month, date, hour, minute, second)
608 * Sets the gregorian calendar minute of the hour for this {@code Date} object.
610 * @param minute
613 * @deprecated use {@code Calendar.set(Calendar.MINUTE, minute)}
617 public void setMinutes(int minute) {
619 cal.set(Calendar.MINUTE, minute);
640 * Sets the gregorian calendar second of the minute for this {@code Date} object.
744 * @param minute
745 * the minute of the hour, 0 - 59.
747 * the second of the minute, 0 - 59.
752 * cal.set(year + 1900, month, day, hour, minute, second);
757 public static long UTC(int year, int month, int day, int hour, int minute,
761 cal.set(1900 + year, month, day, hour, minute, second);