Home
last modified time | relevance | path

Searched refs:GenericConstructorTestHelper (Results 1 – 2 of 2) sorted by relevance

/libcore/luni/src/test/java/libcore/java/lang/reflect/
DConstructorTest.java143 GenericConstructorTestHelper.class); in testToString()
146 GenericConstructorTestHelper.class, String.class); in testToString()
149 GenericConstructorTestHelper.class, String.class, Integer.class); in testToString()
170 GenericConstructorTestHelper.class); in testToGenericString()
173 GenericConstructorTestHelper.class, String.class); in testToGenericString()
176 GenericConstructorTestHelper.class, String.class, Integer.class); in testToGenericString()
191 static class GenericConstructorTestHelper<A extends String, E extends Exception> { class in ConstructorTest
192 public GenericConstructorTestHelper() throws E { } in GenericConstructorTestHelper() method in ConstructorTest.GenericConstructorTestHelper
193 public GenericConstructorTestHelper(A a) { } in GenericConstructorTestHelper() method in ConstructorTest.GenericConstructorTestHelper
194 public <B extends Integer> GenericConstructorTestHelper(A a, B b) { } in GenericConstructorTestHelper() method in ConstructorTest.GenericConstructorTestHelper
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
DConstructorTest.java87 static class GenericConstructorTestHelper<T, S extends T, E extends Exception> { class in ConstructorTest
88 public GenericConstructorTestHelper(T t, S s) {} in GenericConstructorTestHelper() method in ConstructorTest.GenericConstructorTestHelper
89 public GenericConstructorTestHelper() throws E{} in GenericConstructorTestHelper() method in ConstructorTest.GenericConstructorTestHelper
163 Constructor<GenericConstructorTestHelper> genericCtor = GenericConstructorTestHelper.class in test_toGenericString()
169 Constructor<GenericConstructorTestHelper> ctor = GenericConstructorTestHelper.class in test_toGenericString()
326 … Constructor<GenericConstructorTestHelper> constructor = GenericConstructorTestHelper.class in test_getGenericParameterTypes()
357 … Constructor<GenericConstructorTestHelper> constructor = GenericConstructorTestHelper.class in test_getGenericExceptionTypes()