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
1159 * Sets the year, month, day of the month, hour of day, minute, and second fields.
1163 public final void set(int year, int month, int day, int hourOfDay, int minute, int second) { argument
1165 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/luni/src/main/java/java/net/
H A DURI.java775 * Returns true if the given URI escaped strings {@code first} and {@code second} are
780 * Why is this necessary ? We can just replace it with first.equals(second)
783 private boolean escapedEquals(String first, String second) { argument
785 // calculate the number of characters to match based on the length of the second
786 // string. If the second string is shorter than the first, we might attempt to match
788 if (first.length() != second.length()) {
795 int index1 = second.indexOf('%', prevIndex);
805 return first.regionMatches(prevIndex, second, prevIndex,
806 second.length() - prevIndex);
809 if (!first.regionMatches(prevIndex, second, prevInde
[all...]
/libcore/luni/src/main/java/libcore/util/
H A DZoneInfo.java356 private int second; field in class:ZoneInfo.WallTime
524 * second or a year to a valid time to arrive at what they have.
750 public void setSecond(int second) { argument
751 this.second = second;
791 return second;
816 calendar.set(Calendar.SECOND, second);
825 second = calendar.get(Calendar.SECOND);
/libcore/benchmarks/libs/
H A Dcaliper.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/caliper/ com/google/caliper/AllocationMeasurer ...

Completed in 215 milliseconds