/libcore/luni/src/test/java/libcore/libcore/reflect/ |
D | ParameterizedTypeRegressionTest.java | 40 class B<Y> { class in ParameterizedTypeRegressionTest.A 116 Type actual = new ParameterizedClass<A<Integer>.B<Float>>() { in testNested2() 124 A.B.class, in testNested2() 136 Type actual = new ParameterizedClass<A<Integer>.B<Float>.C1<String>>() { in testNested3() 145 A.B.class, in testNested3() 147 A.B.C1.class, in testNested3() 160 Type actual = new ParameterizedClass<A<Integer>.B<Float>.C1<String>.D1>() { in testNested4_nonGenericLeaf() 170 A.B.class, in testNested4_nonGenericLeaf() 172 A.B.C1.class, in testNested4_nonGenericLeaf() 174 A.B.C1.D1.class in testNested4_nonGenericLeaf() [all …]
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
D | SerializationTestClass.java | 49 interface B extends java.io.Serializable { interface in SerializationTestClass 61 public static class TestInterfacesAB implements A, B { 64 public static class TestInterfacesBA implements B, A { 73 public static class TestInterfacesABC implements A, B, C { 76 public static class TestInterfacesACB implements A, C, B { 79 public static class TestInterfacesBAC implements B, A, C { 82 public static class TestInterfacesBCA implements B, C, A { 85 public static class TestInterfacesCAB implements C, A, B { 88 public static class TestInterfacesCBA implements C, B, A {
|
D | ObjectInputStream2Test.java | 73 oos.writeObject(new B()); in test_readObject_Hierarchy() 78 B b = (B) ois.readObject(); in test_readObject_Hierarchy() 82 assertFalse("should not construct self", B.list.contains(b)); in test_readObject_Hierarchy() 137 static class B extends A implements Serializable { class in ObjectInputStream2Test 142 public B() { in B() method in ObjectInputStream2Test.B
|
D | FilterInputStreamTest.java | 168 public void test_read$B() throws Exception { in test_read$B()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/ |
D | GenericArrayTypeTest.java | 50 static class B<T> { class in GenericArrayTypeTest 51 B<T>[] array; 55 Class<? extends B> clazz = GenericArrayTypeTest.B.class; in testParameterizedComponentType() 60 String bName = B.class.getName(); in testParameterizedComponentType()
|
D | ParameterizedTypeTest.java | 29 static class B extends A<String>{} class in ParameterizedTypeTest 32 Class<? extends B> clazz = B.class; in testStringParameterizedSuperClass()
|
D | TypeVariableTest.java | 45 static class B{ class in TypeVariableTest 49 Class<? extends B> clazz = B.class; in testSimpleTypeVariableOnMethod()
|
/libcore/luni/src/test/java/libcore/java/lang/reflect/ |
D | ClassLoaderReflectionTest.java | 144 Field f1 = B.class.getDeclaredField("field"); in testFieldsOfDifferentClassLoadersAreNotEqual() 150 static class B<T> { class in ClassLoaderReflectionTest 161 B<String> bString; 163 F(B<String> parameter, List<A> anotherParameter) {} in F() 164 B<String> method(B<String> parameter, List<A> anotherParameter) { in method() 171 static class BString extends B<String> {}
|
D | ReflectionTest.java | 84 assertEquals(getClass().getName() + "$B", B.class.getName()); in testClassGetName() 95 assertEquals(getClass().getName() + ".B", B.class.getCanonicalName()); in testClassGetCanonicalName() 366 static class B extends Exception {} class in ReflectionTest 375 C(A a) throws B {} in C() 378 protected final synchronized A methodOne(A parameterOne, C parameterTwo) throws B { in methodOne() 392 public D(A a) throws B { in D() 519 HasMemberClassesSuperclass.B.class, HasMemberClasses.H.class); in testGetClasses() 618 public class B {} class in ReflectionTest.HasMemberClassesSuperclass
|
D | ConstructorTest.java | 194 public <B extends Integer> GenericConstructorTestHelper(A a, B b) { } in GenericConstructorTestHelper()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/support/ |
D | B.java | 20 public class B extends A { class
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/support/ |
D | B.java | 3 public class B extends A { class
|
/libcore/luni/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/ |
D | TestEnum1b.java | 4 Z, F, L, A, B enumConstant
|
D | TestEnum1.java | 4 Z, F, L, A, B enumConstant
|
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
D | SecureRandom2Test.java | 71 public void test_Constructor$B() { in test_Constructor$B() 191 public void test_nextBytes$B() { in test_nextBytes$B() 211 public void test_setSeed$B() { in test_setSeed$B()
|
D | MessageDigest2Test.java | 254 public void test_digest$B() throws Exception { in test_digest$B() 429 public void test_isEqual$B$B() { in test_isEqual$B$B()
|
/libcore/ |
D | nullability_annotated_classes.txt | 2 # which should be validated for correctness and completeness. (N.B. Classes
|
/libcore/luni/src/test/java/libcore/java/lang/ |
D | ClassTest.java | 98 interface B { interface in ClassTest 102 class Y extends X implements B { } 110 assertEquals(B.class.getField("name"), Y.class.getField("name")); in test_getField()
|
D | EnumTest.java | 57 A, B enumConstant
|
/libcore/luni/src/test/java/libcore/java/net/ |
D | OldDatagramPacketTest.java | 84 public void test_setData$B() { in test_setData$B()
|
/libcore/luni/src/test/java/libcore/java/io/ |
D | OldOutputStreamTest.java | 53 public void test_write$B() { in test_write$B()
|
D | OldDataInputStreamTest.java | 58 public void test_read$B() throws IOException { in test_read$B() 150 public void test_readFully$B() throws IOException { in test_readFully$B()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
D | ResourceBundleTest.java | 31 import org.apache.harmony.tests.java.util.support.B; 173 B bb = new B(); in test_getBundleLjava_lang_StringLjava_util_LocaleLjava_lang_ClassLoader()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/ |
D | Adler32Test.java | 106 public void test_update$B() { in test_update$B()
|
D | CRC32Test.java | 122 public void test_update$B() { in test_update$B()
|