Searched refs:second (Results 1 - 25 of 35) sorted by relevance

12

/dalvik/libcore/xml/src/main/java/javax/xml/datatype/
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...]
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...]
/dalvik/tests/003-omnibus-opcodes/src/
H A DThrow.java90 boolean second = false;
108 second = true;
113 assert(second);
/dalvik/vm/compiler/template/armv5te/
H A DTEMPLATE_CMPL_DOUBLE.S26 @ Test for NaN with a second comparison. EABI forbids testing bit
H A DTEMPLATE_CMPL_FLOAT.S44 @ Test for NaN with a second comparison. EABI forbids testing bit
/dalvik/vm/mterp/armv5te/
H A DbinopLit16.S21 cmp r1, #0 @ is second operand zero?
H A Dbinop.S25 cmp r1, #0 @ is second operand zero?
H A Dbinop2addr.S23 cmp r1, #0 @ is second operand zero?
H A DbinopLit8.S22 @cmp r1, #0 @ is second operand zero?
H A DbinopWide.S28 orrs ip, r2, r3 @ second arg (r2-r3) is zero?
H A DbinopWide2addr.S25 orrs ip, r2, r3 @ second arg (r2-r3) is zero?
/dalvik/vm/mterp/armv6t2/
H A DbinopLit16.S20 cmp r1, #0 @ is second operand zero?
H A Dbinop2addr.S22 cmp r1, #0 @ is second operand zero?
H A DbinopWide2addr.S24 orrs ip, r2, r3 @ second arg (r2-r3) is zero?
/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 DLocale.java337 int second = s.indexOf('_', first + 1);
342 } else if (second == -1) {
347 temp.add(new Locale(s.substring(0, first), s.substring(first + 1, second), s.substring(second + 1)));
/dalvik/libcore/luni/src/test/java/tests/api/java/io/
H A DFileWriterTest.java117 String second = "The second String for testing.";
118 fileWriter.write(second);
122 char[] out = new char[first.length() + second.length() + 10];
125 assertEquals(first + second, new String(out, 0, length));
135 String second = "The second String for testing.";
136 fileWriter.write(second);
140 char[] out = new char[first.length() + second.length() + 10];
143 assertEquals(second, ne
[all...]
/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/sql/src/main/java/java/sql/
H A DTime.java243 int second = Integer.parseInt(timeString.substring(secondIndex + 1,
245 return new Time(hour, minute, second);
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/
H A DUtil.java125 int hour = -1, minute = -1, second = -1;
162 else if (minute != -1 && second == -1)
163 second = digit;
196 if (second == -1)
197 second = 0;
210 cal.set(Calendar.SECOND, second);
/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/vm/mterp/out/
H A DInterpAsm-armv4t.S4246 cmp r1, #0 @ is second operand zero?
4288 cmp r1, #0 @ is second operand zero?
4331 cmp r1, #0 @ is second operand zero?
4373 cmp r1, #0 @ is second operand zero?
4416 cmp r1, #0 @ is second operand zero?
4458 cmp r1, #0 @ is second operand zero?
4500 cmp r1, #0 @ is second operand zero?
4542 cmp r1, #0 @ is second operand zero?
4584 cmp r1, #0 @ is second operand zero?
4626 cmp r1, #0 @ is second operan
[all...]
H A DInterpAsm-armv5te.S4246 cmp r1, #0 @ is second operand zero?
4288 cmp r1, #0 @ is second operand zero?
4331 cmp r1, #0 @ is second operand zero?
4373 cmp r1, #0 @ is second operand zero?
4416 cmp r1, #0 @ is second operand zero?
4458 cmp r1, #0 @ is second operand zero?
4500 cmp r1, #0 @ is second operand zero?
4542 cmp r1, #0 @ is second operand zero?
4584 cmp r1, #0 @ is second operand zero?
4626 cmp r1, #0 @ is second operan
[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));
/dalvik/libcore/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
H A DAbstractPreferencesTest.java822 AbstractPreferences second = (AbstractPreferences) pref.node("Second node");
826 assertEquals(0, second.childrenNames().length);
828 second.removeNode();
831 second.childrenNames();
909 AbstractPreferences second = (AbstractPreferences) pref.node("Second node");
940 second.removeNode();
943 second.node("");
1061 AbstractPreferences second = (AbstractPreferences) pref.node("Second node/sub node");
1065 assertTrue(second.name().compareTo("sub node") == 0);

Completed in 2576 milliseconds

12