Searched refs:minute (Results 1 - 20 of 20) sorted by relevance

/openjdk7/jdk/src/share/classes/java/sql/
H A DTime.java41 * given values for the hour, minute, and second.
50 * @param minute 0 to 59
57 public Time(int hour, int minute, int second) { argument
58 super(70, 0, 1, hour, minute, second);
91 int minute;
103 minute =
110 return new Time(hour, minute, second);
120 int minute = super.getMinutes();
131 if (minute < 10) {
132 minuteString = "0" + minute;
[all...]
H A DTimestamp.java80 * @param minute 0 to 59
88 int hour, int minute, int second, int nano) {
89 super(year, month, date, hour, minute, second);
179 int minute;
242 minute =
263 return new Timestamp(year - 1900, month - 1, day, hour, minute, second, a_nanos);
280 int minute = super.getMinutes();
316 if (minute < 10) {
317 minuteString = "0" + minute;
319 minuteString = Integer.toString(minute);
87 Timestamp(int year, int month, int date, int hour, int minute, int second, int nano) argument
[all...]
/openjdk7/jaxp/src/javax/xml/datatype/
H A DXMLGregorianCalendar.java109 * An hour value of 24 is allowed to be set in the lexical space provided the minute and second
117 * <td><a name="datetimefield-minute"/>minute</td>
217 * int minute,
226 * int minute,
333 * @param minute value constraints are summarized in
334 * <a href="#datetimefield-minute">minute field of date/time field mapping table</a>.
344 public void setTime(int hour, int minute, int second) { argument
348 minute,
376 setMinute(int minute) argument
434 setTime( int hour, int minute, int second, BigDecimal fractional) argument
463 setTime(int hour, int minute, int second, int millisecond) argument
[all...]
H A DDatatypeFactory.java191 * Gregorian year, month, day, hour, minute, and second components defined in Section 5.5.3.2 of [ISO 8601], respectively.
193 * year, month, day, hour, minute, and second.
220 * Gregorian year, month, day, hour, minute, and second components defined in Section 5.5.3.2 of [ISO 8601], respectively.
222 * year, month, day, hour, minute, and second.
358 * whose lexical representation contains only day, hour, minute, and second components.
402 * whose lexical representation contains only day, hour, minute, and second components.
424 * <p>Any remaining milliseconds after determining the day, hour, minute and second are discarded.</p>
440 * <code>day</code>, <code>hour</code>, <code>minute</code> and <code>second</code> as defined in
445 * whose lexical representation contains only day, hour, minute, and second components.
459 * @param minute Minut
470 newDurationDayTime( final boolean isPositive, final BigInteger day, final BigInteger hour, final BigInteger minute, final BigInteger second) argument
513 newDurationDayTime( final boolean isPositive, final int day, final int hour, final int minute, final int second) argument
823 newXMLGregorianCalendar( final BigInteger year, final int month, final int day, final int hour, final int minute, final int second, final BigDecimal fractionalSecond, final int timezone) argument
859 newXMLGregorianCalendar( final int year, final int month, final int day, final int hour, final int minute, final int second, final int millisecond, final int timezone) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/datatype/
H A DDatatypeFactoryImpl.java83 * Gregorian year, month, day, hour, minute, and second components defined in Section 5.5.3.2 of [ISO 8601], respectively.
85 * year, month, day, hour, minute, and second.
115 * Gregorian year, month, day, hour, minute, and second components defined in Section 5.5.3.2 of [ISO 8601], respectively.
117 * year, month, day, hour, minute, and second.
336 * whose lexical representation contains only day, hour, minute, and second components.
371 * whose lexical representation contains only day, hour, minute, and second components.
393 * <p>Any remaining milliseconds after determining the day, hour, minute and second are discarded.</p>
409 * <code>day</code>, <code>hour</code>, <code>minute</code> and <code>second</code> as defined in
414 * whose lexical representation contains only day, hour, minute, and second components.
428 * @param minute Minut
439 newDurationDayTime( final boolean isPositive, final BigInteger day, final BigInteger hour, final BigInteger minute, final BigInteger second) argument
480 newDurationDayTime( final boolean isPositive, final int day, final int hour, final int minute, final int second) argument
631 newXMLGregorianCalendar( final BigInteger year, final int month, final int day, final int hour, final int minute, final int second, final BigDecimal fractionalSecond, final int timezone) argument
[all...]
H A DXMLGregorianCalendarImpl.java123 * An hour value of 24 is allowed to be set in the lexical space provided the minute and second
130 * <a name="datetimefield-minute"/>
132 * <td> minute </td>
231 private int minute = DatatypeConstants.FIELD_UNDEFINED; field in class:XMLGregorianCalendarImpl
336 0, // minute
466 * @param minute of <code>XMLGregorianCalendar</code> to be created.
477 int minute,
485 setTime(hour, minute, second, fractionalSecond);
495 new Integer(hour), new Integer(minute), new Integer(second),
514 + ", minute
472 XMLGregorianCalendarImpl( BigInteger year, int month, int day, int hour, int minute, int second, BigDecimal fractionalSecond, int timezone) argument
543 XMLGregorianCalendarImpl( int year, int month, int day, int hour, int minute, int second, int millisecond, int timezone) argument
727 createDateTime( int year, int month, int day, int hour, int minute, int second) argument
1289 setTime(int hour, int minute, int second) argument
1335 setMinute(int minute) argument
1366 setTime( int hour, int minute, int second, BigDecimal fractional) argument
1406 setTime(int hour, int minute, int second, int millisecond) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DDayTimeDurationDV.java54 if (date.day<0 || date.hour<0 || date.minute<0 || date.second<0) {
60 date.minute != DatatypeConstants.FIELD_UNDEFINED?BigInteger.valueOf(sign*date.minute):null,
H A DAbstractDateTimeDV.java221 if (date1.minute < date2.minute) {
224 if (date1.minute > date2.minute) {
264 data.minute = parseInt(buffer, start, stop);
455 if (data.hour == 24 && data.minute == 0 && data.second == 0) {
474 if (data.minute > 59 || data.minute < 0) {
624 System.out.println("==>date.minute" + date.minute);
934 int year, month, day, hour, minute, utc; field in class:AbstractDateTimeDV.DateTimeData
959 DateTimeData(int year, int month, int day, int hour, int minute, double second, int utc, String originalValue, boolean normalized, AbstractDateTimeDV type) argument
[all...]
H A DDurationDV.java167 date.minute=negate * parseInt(str,start,end);
297 temp = addto.minute +date.minute + carry;
299 duration.minute= mod(temp, 60, carry);
355 || date.hour<0 || date.minute<0 || date.second<0) {
368 message.append((date.minute < 0?-1:1) * date.minute);
379 || date.hour<0 || date.minute<0 || date.second<0) {
387 date.minute != DatatypeConstants.FIELD_UNDEFINED?BigInteger.valueOf(sign*date.minute)
[all...]
H A DTimeDV.java99 append(message, date.minute, 2);
/openjdk7/jdk/make/tools/src/build/tools/javazic/
H A DTime.java322 int minute = ms / (60 * 1000);
325 if (minus && minute != 0) {
331 if (minute != 0) {
335 s.append(Integer.toString(minute) + "*ONE_MINUTE");
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DDerInputBuffer.java296 int year, month, day, hour, minute, second, millis;
326 minute = 10 * Character.digit((char)buf[pos++], 10);
327 minute += Character.digit((char)buf[pos++], 10);
379 || hour >= 24 || minute >= 60 || second >= 60)
389 date.setTimeOfDay(hour, minute, second, millis);
/openjdk7/jdk/src/share/classes/java/util/
H A DCalendar.java189 * <li> 23:59 is the last minute of the day and 00:00 is the first
190 * minute of the next day. Thus, 23:59 on Dec 31, 1999 &lt; 00:00 on
525 * minute within the hour.
532 * second within the minute.
1260 * @param minute the value used to set the <code>MINUTE</code> calendar field.
1265 public final void set(int year, int month, int date, int hourOfDay, int minute) argument
1271 set(MINUTE, minute);
1286 * @param minute the value used to set the <code>MINUTE</code> calendar field.
1292 public final void set(int year, int month, int date, int hourOfDay, int minute, argument
1299 set(MINUTE, minute);
[all...]
H A DGregorianCalendar.java647 * @param minute the value used to set the <code>MINUTE</code> calendar field
651 int minute) {
652 this(year, month, dayOfMonth, hourOfDay, minute, 0, 0);
665 * @param minute the value used to set the <code>MINUTE</code> calendar field
671 int minute, int second) {
672 this(year, month, dayOfMonth, hourOfDay, minute, second, 0);
685 * @param minute the value used to set the <code>MINUTE</code> calendar field
692 int hourOfDay, int minute, int second, int millis) {
716 this.set(MINUTE, minute);
650 GregorianCalendar(int year, int month, int dayOfMonth, int hourOfDay, int minute) argument
670 GregorianCalendar(int year, int month, int dayOfMonth, int hourOfDay, int minute, int second) argument
691 GregorianCalendar(int year, int month, int dayOfMonth, int hourOfDay, int minute, int second, int millis) argument
/openjdk7/jdk/src/windows/native/sun/security/krb5/
H A DNativeCreds.c1028 WCHAR minute[3]; local
1038 swprintf( (wchar_t *)minute, 3, L"%2.2d", systemTime.wMinute);
1046 minute,
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpng.c623 APPEND_NUMBER(PNG_NUMBER_FORMAT_02u, (unsigned)ptime->minute % 60);
H A Dpng.h679 png_byte minute; /* minute of hour, 0 - 59 */ member in struct:png_time_struct
680 png_byte second; /* second of minute, 0 - 60 (for leap seconds) */
H A Dpngwrite.c456 ptime->minute = (png_byte)ttime->tm_min;
H A Dpngrutil.c2136 mod_time.minute = buf[5];
H A Dpngwutil.c2023 buf[5] = mod_time->minute;

Completed in 95 milliseconds