Home
last modified time | relevance | path

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

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
DConstructorTest.java106 Constructor<ConstructorTestHelper> ctor1 = ConstructorTestHelper.class in test_getParameterAnnotations() local
108 Annotation[][] paramAnnotations = ctor1.getParameterAnnotations(); in test_getParameterAnnotations()
126 Constructor<ConstructorTestHelper> ctor1 = null; in test_getDeclaredAnnotations() local
127 ctor1 = ConstructorTestHelper.class.getConstructor(new Class[0]); in test_getDeclaredAnnotations()
128 Annotation[] annotations = ctor1.getDeclaredAnnotations(); in test_getDeclaredAnnotations()
178 Constructor<ConstructorTestHelper> ctor1 = null, ctor2 = null; in test_equalsLjava_lang_Object() local
180 ctor1 = ConstructorTestHelper.class.getConstructor( in test_equalsLjava_lang_Object()
186 assertTrue("Different Contructors returned equal", !ctor1.equals(ctor2)); in test_equalsLjava_lang_Object()