Searched refs:dd (Results 1 - 5 of 5) sorted by relevance

/libcore/ojluni/src/main/java/java/sql/
H A DDate.java102 * and <code>dd</code> may also be omitted.
128 String dd = s.substring(secondDash + 1);
131 (dd.length() >= 1 && dd.length() <= DAY_LENGTH)) {
134 int day = Integer.parseInt(dd);
151 * Formats a date in the date escape format yyyy-mm-dd.
153 * @return a String in yyyy-mm-dd format
H A DTimestamp.java41 * <li><code>19 </code>, which is the number of characters in yyyy-mm-dd hh:mm:ss
43 * of characters in the yyyy-mm-dd hh:mm:ss.[fff...] and <code>s</code> represents the scale of the given Timestamp,
160 * and <code>dd</code> may also be omitted.
188 String formatError = "Timestamp format must be yyyy-mm-dd hh:mm:ss[.fffffffff]";
221 String dd = date_s.substring(secondDash + 1);
224 (dd.length() >= 1 && dd.length() <= DAY_LENGTH)) {
227 day = Integer.parseInt(dd);
268 * <code>yyyy-mm-dd hh:mm:ss.fffffffff</code>,
272 * <code>yyyy-mm-dd h
[all...]
/libcore/xml/src/main/java/org/kxml2/io/
H A DKXmlSerializer.java193 public void docdecl(String dd) throws IOException { argument
195 append(dd);
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
H A DDoubleTest.java198 private void test_toString(double dd, String answer) { argument
199 assertEquals(answer, Double.toString(dd));
200 Double d = new Double(dd);
324 Double dd = new Double(i);
325 assertTrue("Should not be identical ", d != dd);
326 assertTrue("Should be equals 1 ", d.equals(dd));
327 assertTrue("Should be equals 2 ", dd.equals(d));
328 assertTrue("Should have identical values ", dd.doubleValue() == d.doubleValue());
329 assertTrue("Invalid hash for equal but not identical doubles ", d.hashCode() == dd
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
H A DEnumSetTest.java44 a, b,c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, aa, bb, cc, dd, ee, ff, gg, hh, ii, jj, kk, ll, enum constant in enum:EnumSetTest.EnumFoo
52 a{}, b{}, c{}, d{}, e{}, f{}, g{}, h{}, i{}, j{}, k{}, l{}, m{}, n{}, o{}, p{}, q{}, r{}, s{}, t{}, u{}, v{}, w{}, x{}, y{}, z{}, A{}, B{}, C{}, D{}, E{}, F{}, G{}, H{}, I{}, J{}, K{}, L{}, M{}, N{}, O{}, P{}, Q{}, R{}, S{}, T{}, U{}, V{}, W{}, X{}, Y{}, Z{}, aa{}, bb{}, cc{}, dd{}, ee{}, ff{}, gg{}, hh{}, ii{}, jj{}, kk{}, ll{}, mm{}, enum constant in enum:EnumSetTest.HugeEnumWithInnerClass
56 a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, aa, bb, cc, dd, ee, ff, gg, hh, ii, jj, kk, ll, mm, enum constant in enum:EnumSetTest.HugeEnum
821 hugeSet.add(HugeEnum.dd);

Completed in 4076 milliseconds