Home
last modified time | relevance | path

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

/libcore/luni/src/test/java/libcore/java/lang/reflect/annotations/
DAnnotatedElementParameterTest.java36 …core.java.lang.reflect.annotations.AnnotatedElementTestSupport.checkAnnotatedElementPresentMethods;
57 checkAnnotatedElementPresentMethods(parameter0); in testMethodParameterAnnotations()
60 checkAnnotatedElementPresentMethods(parameter1); in testMethodParameterAnnotations()
67 checkAnnotatedElementPresentMethods(parameter0, AnnotationB.class, AnnotationD.class); in testMethodParameterAnnotations()
70 checkAnnotatedElementPresentMethods(parameter1, AnnotationC.class, AnnotationD.class); in testMethodParameterAnnotations()
89 checkAnnotatedElementPresentMethods(parameter0); in testConstructorParameterAnnotations()
92 checkAnnotatedElementPresentMethods(parameter1); in testConstructorParameterAnnotations()
99 checkAnnotatedElementPresentMethods(parameter0, AnnotationB.class, AnnotationD.class); in testConstructorParameterAnnotations()
102 checkAnnotatedElementPresentMethods(parameter1, AnnotationC.class, AnnotationD.class); in testConstructorParameterAnnotations()
DClassTest.java28 …core.java.lang.reflect.annotations.AnnotatedElementTestSupport.checkAnnotatedElementPresentMethods;
49 checkAnnotatedElementPresentMethods(Type.class, AnnotationA.class, AnnotationB.class); in testClassDirectAnnotations()
54 checkAnnotatedElementPresentMethods(ExtendsType.class, AnnotationB.class); in testClassInheritedAnnotations()
DFieldTest.java29 …core.java.lang.reflect.annotations.AnnotatedElementTestSupport.checkAnnotatedElementPresentMethods;
43 checkAnnotatedElementPresentMethods(field, AnnotationA.class, AnnotationD.class); in testFieldAnnotations()
DMethodTest.java29 …core.java.lang.reflect.annotations.AnnotatedElementTestSupport.checkAnnotatedElementPresentMethods;
43 checkAnnotatedElementPresentMethods(method, AnnotationB.class, AnnotationC.class); in testMethodAnnotations()
DConstructorTest.java29 …core.java.lang.reflect.annotations.AnnotatedElementTestSupport.checkAnnotatedElementPresentMethods;
43 checkAnnotatedElementPresentMethods(constructor, AnnotationA.class, AnnotationC.class); in testConstructorAnnotations()
DAnnotatedElementTestSupport.java106 static void checkAnnotatedElementPresentMethods( in checkAnnotatedElementPresentMethods() method in AnnotatedElementTestSupport