Home
last modified time | relevance | path

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

/art/test/048-reflect-v8/src/
DAnnotationTest.java176 printMethodAnnotationsByType(Calendar.class, "singleUser", AnnotationTestFixture.class); in testMethodAnnotationsByType()
177 printMethodAnnotationsByType(Calendars.class, "singleUser", AnnotationTestFixture.class); in testMethodAnnotationsByType()
179 printMethodAnnotationsByType(Calendar.class, "user", AnnotationTestFixture.class); in testMethodAnnotationsByType()
180 printMethodAnnotationsByType(Calendars.class, "user", AnnotationTestFixture.class); in testMethodAnnotationsByType()
182 printMethodAnnotationsByType(Calendar.class, "user2", AnnotationTestFixture.class); in testMethodAnnotationsByType()
183 printMethodAnnotationsByType(Calendars.class, "user2", AnnotationTestFixture.class); in testMethodAnnotationsByType()
185 printMethodAnnotationsByType(Calendar.class, "userComplex", AnnotationTestFixture.class); in testMethodAnnotationsByType()
186 printMethodAnnotationsByType(Calendars.class, "userComplex", AnnotationTestFixture.class); in testMethodAnnotationsByType()
194 private static <A extends Annotation> void printMethodAnnotationsByType(Class<A> annotationClass, in printMethodAnnotationsByType() method in AnnotationTest