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

/libcore/luni/src/test/java/libcore/java/lang/reflect/annotations/
H A DConstructorTest.java84 private static void checkDeclaredAnnotation(Class<?> c, int constructorArgCount, argument
87 Constructor constructor = getConstructor(c, constructorArgCount);
118 private static void assertGetDeclaredAnnotationsByType(Class<?> c, int constructorArgCount, argument
121 Constructor<?> constructor = getConstructor(c, constructorArgCount);
144 private static void assertGetAnnotationsByType(Class<?> c, int constructorArgCount, argument
147 Constructor<?> constructor = getConstructor(c, constructorArgCount);
152 private static Constructor<?> getConstructor(Class<?> c, int constructorArgCount) argument
155 Class<?>[] args = new Class[constructorArgCount];
156 for (int i = 0; i < constructorArgCount; i++) {

Completed in 88 milliseconds