Home
last modified time | relevance | path

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

/art/test/048-reflect-v8/src/
DAnnotationTest.java216 printMethodDeclaredAnnotation(Calendar.class, "singleUser", AnnotationTestFixture.class); in testMethodDeclaredAnnotations()
217 printMethodDeclaredAnnotation(Calendars.class, "singleUser", AnnotationTestFixture.class); in testMethodDeclaredAnnotations()
219 printMethodDeclaredAnnotation(Calendar.class, "user", AnnotationTestFixture.class); in testMethodDeclaredAnnotations()
220 printMethodDeclaredAnnotation(Calendars.class, "user", AnnotationTestFixture.class); in testMethodDeclaredAnnotations()
222 printMethodDeclaredAnnotation(Calendar.class, "user2", AnnotationTestFixture.class); in testMethodDeclaredAnnotations()
223 printMethodDeclaredAnnotation(Calendars.class, "user2", AnnotationTestFixture.class); in testMethodDeclaredAnnotations()
225 printMethodDeclaredAnnotation(Calendar.class, "userComplex", AnnotationTestFixture.class); in testMethodDeclaredAnnotations()
226 printMethodDeclaredAnnotation(Calendars.class, "userComplex", AnnotationTestFixture.class); in testMethodDeclaredAnnotations()
234 private static <A extends Annotation> void printMethodDeclaredAnnotation(Class<A> annotationClass, in printMethodDeclaredAnnotation() method in AnnotationTest