Searched defs:second (Results 1 - 7 of 7) sorted by relevance

/libcore/luni/src/main/java/javax/xml/datatype/
H A DDatatypeFactory.java145 * Gregorian year, month, day, hour, minute, and second components defined in Section 5.5.3.2 of [ISO 8601], respectively.
147 * year, month, day, hour, minute, and second.
174 * Gregorian year, month, day, hour, minute, and second components defined in Section 5.5.3.2 of [ISO 8601], respectively.
176 * year, month, day, hour, minute, and second.
309 * whose lexical representation contains only day, hour, minute, and second components.
349 * whose lexical representation contains only day, hour, minute, and second components.
371 * <p>Any remaining milliseconds after determining the day, hour, minute and second are discarded.</p>
435 * <code>day</code>, <code>hour</code>, <code>minute</code> and <code>second</code> as defined in
440 * whose lexical representation contains only day, hour, minute, and second components.
455 * @param second Secon
463 newDurationDayTime( final boolean isPositive, final BigInteger day, final BigInteger hour, final BigInteger minute, final BigInteger second) argument
505 newDurationDayTime( final boolean isPositive, final int day, final int hour, final int minute, final int second) argument
785 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
821 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 * For a value of 24, the minute and second field must be zero per
115 * <a name="datetimefield-second"/>
117 * <td>second</td>
124 * <i>(Note: 60 only allowable for leap second.)</i><br/>
201 * int second,
210 * int second,
318 * @param second value constraints are summarized in
319 * <a href="#datetimefield-second">second field of date/time field mapping table</a>.
327 public void setTime(int hour, int minute, int second) { argument
371 setSecond(int second) argument
416 setTime( int hour, int minute, int second, BigDecimal fractional) argument
444 setTime(int hour, int minute, int second, int millisecond) argument
[all...]
/libcore/luni/src/main/java/java/util/
H A DDate.java114 * @param second
115 * the second of the minute, 0 - 59.
121 public Date(int year, int month, int day, int hour, int minute, int second) { argument
123 cal.set(1900 + year, month, day, hour, minute, second);
290 * Returns the gregorian calendar second of the minute for this {@code Date} object.
380 int hour = -1, minute = -1, second = -1, zoneOffset = 0, minutesOffset = 0;
459 } else if (minute != -1 && second == -1) {
460 second = digit;
531 if (second == -1) {
532 second
624 setSeconds(int second) argument
747 UTC(int year, int month, int day, int hour, int minute, int second) argument
[all...]
H A DGregorianCalendar.java284 * @param second
285 * the second.
288 int minute, int second) {
290 set(year, month, day, hour, minute, second);
287 GregorianCalendar(int year, int month, int day, int hour, int minute, int second) argument
H A DCalendar.java353 * Value of the {@code MONTH} field indicating the second month of
631 * second within the minute. E.g., at 10:04:15.250 PM the
638 * millisecond within the second. E.g., at 10:04:15.250 PM the
1260 * Sets the year, month, day of the month, hour of day, minute and second
1273 * @param second
1274 * the second.
1277 int minute, int second) {
1279 set(SECOND, second);
1276 set(int year, int month, int day, int hourOfDay, int minute, int second) argument
/libcore/luni/src/main/java/java/lang/
H A DClassLoader.java417 Enumeration second = findResources(resName);
419 return new TwoEnumerationsInOne(first, second);
450 * second parameter of {@link #loadClass(String, boolean)} is ignored
714 * first enumeration until it's empty, then from the second one.
720 private Enumeration<URL> second; field in class:TwoEnumerationsInOne
722 public TwoEnumerationsInOne(Enumeration<URL> first, Enumeration<URL> second) { argument
724 this.second = second;
728 return first.hasMoreElements() || second.hasMoreElements();
735 return second
[all...]
/libcore/luni/src/main/java/java/net/
H A DURI.java769 * Returns true if {@code first} and {@code second} are equal after
772 private boolean escapedEquals(String first, String second) { argument
773 if (first.indexOf('%') != second.indexOf('%')) {
774 return first.equals(second);
779 && second.indexOf('%', prevIndex) == index) {
781 second.substring(prevIndex, index));
787 second.substring(index + 1, index + 3));
795 return first.substring(prevIndex).equals(second.substring(prevIndex));

Completed in 745 milliseconds