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

/openjdk7/jdk/src/share/classes/java/sql/
H A DTime.java41 * given values for the hour, minute, and second.
49 * @param hour 0 to 23
57 public Time(int hour, int minute, int second) { argument
58 super(70, 0, 1, hour, minute, second);
90 int hour;
102 hour = Integer.parseInt(s.substring(0, firstColon));
110 return new Time(hour, minute, second);
119 int hour = super.getHours();
126 if (hour < 10) {
127 hourString = "0" + hour;
[all...]
H A DTimestamp.java79 * @param hour 0 to 23
88 int hour, int minute, int second, int nano) {
89 super(year, month, date, hour, minute, second);
178 int hour;
241 hour = Integer.parseInt(time_s.substring(0, firstColon));
263 return new Timestamp(year - 1900, month - 1, day, hour, minute, second, a_nanos);
279 int hour = super.getHours();
311 if (hour < 10) {
312 hourString = "0" + hour;
314 hourString = Integer.toString(hour);
87 Timestamp(int year, int month, int date, int hour, int minute, int second, int nano) 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.
427 * @param hour Hou
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.java117 * <a name="datetimefield-hour"/>
119 * <td> hour </td>
123 * An hour value of 24 is allowed to be set in the lexical space provided the minute and second
124 * field values are zero. However, an hour value of 24 is not allowed in value space and will be
226 private int hour = DatatypeConstants.FIELD_UNDEFINED; field in class:XMLGregorianCalendarImpl
335 0, // hour
465 * @param hour of <code>XMLGregorianCalendar</code> to be created.
476 int hour,
485 setTime(hour, minute, second, fractionalSecond);
495 new Integer(hour), ne
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
1315 setHour(int hour) argument
1320 setHour(int hour, boolean validate) 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/javax/xml/datatype/
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.
458 * @param hour Hou
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...]
H A DXMLGregorianCalendar.java105 * <td><a name="datetimefield-hour"/>hour</td>
109 * An hour value of 24 is allowed to be set in the lexical space provided the minute and second
110 * field values are zero. However, an hour value of 24 is not allowed in value space and will be
216 * int hour,
225 * int hour,
331 * @param hour value constraints are summarized in
332 * <a href="#datetimefield-hour">hour field of date/time field mapping table</a>.
344 public void setTime(int hour, in argument
364 setHour(int hour) argument
434 setTime( int hour, int minute, int second, BigDecimal fractional) argument
463 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 DAbstractDateTimeDV.java215 if (date1.hour < date2.hour) {
218 if (date1.hour > date2.hour) {
255 data.hour = parseInt(buffer, start, stop);
454 if (data.hour > 23 || data.hour < 0) {
455 if (data.hour == 24 && data.minute == 0 && data.second == 0) {
456 data.hour = 0;
635 temp = date.hour
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...]
/openjdk7/jdk/src/windows/native/sun/security/krb5/
H A DNativeCreds.c1027 WCHAR hour[3]; local
1037 swprintf( (wchar_t *)hour, 3, L"%2.2d", systemTime.wHour);
1045 hour,
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpng.h678 png_byte hour; /* hour of day, 0 - 23 */ member in struct:png_time_struct
679 png_byte minute; /* minute of hour, 0 - 59 */

Completed in 59 milliseconds