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

/dalvik/libcore/xml/src/main/java/javax/xml/datatype/
H A DDatatypeFactory.java141 * Gregorian year, month, day, hour, minute, and second components defined in Section 5.5.3.2 of [ISO 8601], respectively.
143 * year, month, day, hour, minute, and second.
170 * Gregorian year, month, day, hour, minute, and second components defined in Section 5.5.3.2 of [ISO 8601], respectively.
172 * year, month, day, hour, minute, and second.
305 * whose lexical representation contains only day, hour, minute, and second components.
345 * whose lexical representation contains only day, hour, minute, and second components.
367 * <p>Any remaining milliseconds after determining the day, hour, minute and second are discarded.</p>
431 * <code>day</code>, <code>hour</code>, <code>minute</code> and <code>second</code> as defined in
436 * whose lexical representation contains only day, hour, minute, and second components.
451 * @param second Secon
459 newDurationDayTime( final boolean isPositive, final BigInteger day, final BigInteger hour, final BigInteger minute, final BigInteger second) argument
501 newDurationDayTime( final boolean isPositive, final int day, final int hour, final int minute, final int second) argument
781 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
817 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...]
/dalvik/libcore/luni/src/main/java/java/util/
H A DDate.java122 * @param second
123 * the second of the minute, 0 - 59.
129 public Date(int year, int month, int day, int hour, int minute, int second) { argument
131 cal.set(1900 + year, month, day, hour, minute, second);
298 * Returns the gregorian calendar second of the minute for this {@code Date} object.
390 int hour = -1, minute = -1, second = -1, zoneOffset = 0, minutesOffset = 0;
469 } else if (minute != -1 && second == -1) {
470 second = digit;
543 if (second == -1) {
544 second
636 setSeconds(int second) argument
760 UTC(int year, int month, int day, int hour, int minute, int second) argument
[all...]
H A DGregorianCalendar.java292 * @param second
293 * the second.
296 int minute, int second) {
298 set(year, month, day, hour, minute, second);
295 GregorianCalendar(int year, int month, int day, int hour, int minute, int second) argument
H A DCalendar.java340 * Value of the {@code MONTH} field indicating the second month of
618 * second within the minute. E.g., at 10:04:15.250 PM the
625 * millisecond within the second. E.g., at 10:04:15.250 PM the
1224 * Sets the year, month, day of the month, hour of day, minute and second
1237 * @param second
1238 * the second.
1241 int minute, int second) {
1243 set(SECOND, second);
1240 set(int year, int month, int day, int hourOfDay, int minute, int second) argument
/dalvik/libcore/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
H A DDateTest.java106 int minute, int second) {
107 aCal.set(year, month, date, hour, minute, second);
105 getTime(int year, int month, int date, int hour, int minute, int second) argument
/dalvik/libcore/luni-kernel/src/main/java/java/lang/
H A DClassLoader.java484 Enumeration second = findResources(resName);
486 return new TwoEnumerationsInOne(first, second);
520 * second parameter of {@link #loadClass(String, boolean)} is ignored
1007 * first enumeration until it's empty, then from the second one.
1013 private Enumeration<URL> second; field in class:TwoEnumerationsInOne
1015 public TwoEnumerationsInOne(Enumeration<URL> first, Enumeration<URL> second) { argument
1017 this.second = second;
1021 return first.hasMoreElements() || second.hasMoreElements();
1028 return second
[all...]
/dalvik/libcore/luni/src/main/java/java/net/
H A DURI.java1017 private boolean equalsHexCaseInsensitive(String first, String second) { argument
1018 if (first.indexOf('%') != second.indexOf('%')) {
1019 return first.equals(second);
1024 && second.indexOf('%', previndex) == index) {
1026 second.substring(previndex, index));
1032 second.substring(index + 1, index + 3));
1040 return first.substring(previndex).equals(second.substring(previndex));

Completed in 133 milliseconds