Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/sql/
DDate.java128 String dd = s.substring(secondDash + 1); in valueOf() local
131 (dd.length() >= 1 && dd.length() <= DAY_LENGTH)) { in valueOf()
134 int day = Integer.parseInt(dd); in valueOf()
DTimestamp.java221 String dd = date_s.substring(secondDash + 1); in valueOf() local
224 (dd.length() >= 1 && dd.length() <= DAY_LENGTH)) { in valueOf()
227 day = Integer.parseInt(dd); in valueOf()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
DDoubleTest.java198 private void test_toString(double dd, String answer) { in test_toString() argument
199 assertEquals(answer, Double.toString(dd)); in test_toString()
200 Double d = new Double(dd); in test_toString()
324 Double dd = new Double(i); in test_hashCode() local
325 assertTrue("Should not be identical ", d != dd); in test_hashCode()
326 assertTrue("Should be equals 1 ", d.equals(dd)); in test_hashCode()
327 assertTrue("Should be equals 2 ", dd.equals(d)); in test_hashCode()
328 assertTrue("Should have identical values ", dd.doubleValue() == d.doubleValue()); in test_hashCode()
329 assertTrue("Invalid hash for equal but not identical doubles ", d.hashCode() == dd in test_hashCode()
/libcore/xml/src/main/java/org/kxml2/io/
DKXmlSerializer.java193 public void docdecl(String dd) throws IOException { in docdecl() argument
195 append(dd); in docdecl()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DEnumSetTest.java44 …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,… enumConstant
52 …, P{}, Q{}, R{}, S{}, T{}, U{}, V{}, W{}, X{}, Y{}, Z{}, aa{}, bb{}, cc{}, dd{}, ee{}, ff{}, gg{},… enumConstant
56 …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,… enumConstant
821 hugeSet.add(HugeEnum.dd); in test_containsAll_LCollection()