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

/libcore/luni/src/main/java/javax/xml/datatype/
H A DDatatypeFactory.java148 * Gregorian year, month, day, hour, minute, and second components defined in Section 5.5.3.2 of [ISO 8601], respectively.
150 * year, month, day, hour, minute, and second.
177 * Gregorian year, month, day, hour, minute, and second components defined in Section 5.5.3.2 of [ISO 8601], respectively.
179 * year, month, day, hour, minute, and second.
312 * whose lexical representation contains only day, hour, minute, and second components.
352 * whose lexical representation contains only day, hour, minute, and second components.
374 * <p>Any remaining milliseconds after determining the day, hour, minute and second are discarded.</p>
438 * <code>day</code>, <code>hour</code>, <code>minute</code> and <code>second</code> as defined in
443 * whose lexical representation contains only day, hour, minute, and second components.
458 * @param second Secon
466 newDurationDayTime( final boolean isPositive, final BigInteger day, final BigInteger hour, final BigInteger minute, final BigInteger second) argument
508 newDurationDayTime( final boolean isPositive, final int day, final int hour, final int minute, final int second) argument
788 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
824 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.java119 * @param second
120 * the second of the minute, 0 - 59.
126 public Date(int year, int month, int day, int hour, int minute, int second) { argument
128 cal.set(1900 + year, month, day, hour, minute, second);
295 * Returns the gregorian calendar second of the minute for this {@code Date} object.
388 int hour = -1, minute = -1, second = -1, zoneOffset = 0, minutesOffset = 0;
467 } else if (minute != -1 && second == -1) {
468 second = digit;
539 if (second == -1) {
540 second
632 setSeconds(int second) argument
755 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
1147 * Sets the year, month, day of the month, hour of day, minute, and second fields.
1151 public final void set(int year, int month, int day, int hourOfDay, int minute, int second) { argument
1153 set(SECOND, second);
/libcore/libart/src/main/java/java/lang/
H A DClassLoader.java425 Enumeration<URL> second = findResources(resName);
427 return new TwoEnumerationsInOne(first, second);
458 * second parameter of {@link #loadClass(String, boolean)} is ignored
728 * first enumeration until it's empty, then from the second one.
734 private final Enumeration<URL> second; field in class:TwoEnumerationsInOne
736 public TwoEnumerationsInOne(Enumeration<URL> first, Enumeration<URL> second) { argument
738 this.second = second;
743 return first.hasMoreElements() || second.hasMoreElements();
751 return second
[all...]
/libcore/libdvm/src/main/java/java/lang/
H A DClassLoader.java413 Enumeration second = findResources(resName);
415 return new TwoEnumerationsInOne(first, second);
446 * second parameter of {@link #loadClass(String, boolean)} is ignored
710 * first enumeration until it's empty, then from the second one.
716 private Enumeration<URL> second; field in class:TwoEnumerationsInOne
718 public TwoEnumerationsInOne(Enumeration<URL> first, Enumeration<URL> second) { argument
720 this.second = second;
724 return first.hasMoreElements() || second.hasMoreElements();
731 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));
/libcore/benchmarks/libs/
H A Dcaliper.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/caliper/ com/google/caliper/AllocationMeasurer ...

Completed in 228 milliseconds