Searched refs:AnnotationC (Results 1 – 5 of 5) sorted by relevance
/libcore/luni/src/test/java/libcore/java/lang/reflect/annotations/ |
D | AnnotatedElementTestSupport.java | 59 public @interface AnnotationC {} annotation in AnnotatedElementTestSupport 115 assertPresent(expectedTypes.contains(AnnotationC.class), element, AnnotationC.class); in checkAnnotatedElementPresentMethods() 153 assertDeclared(expectedTypes.contains(AnnotationC.class), element, AnnotationC.class); in checkAnnotatedElementDirectMethods()
|
D | ExecutableParameterTest.java | 29 import libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.AnnotationC; 49 @AnnotationC @AnnotationD String parameter2) {} in methodWithAnnotatedParameters() 66 assertEquals(set(AnnotationC.class, AnnotationD.class), in testMethodGetParameterAnnotations() 152 @AnnotationC @AnnotationD String parameter2) {} in ConstructorClass() 169 assertEquals(set(AnnotationC.class, AnnotationD.class), in testConstructorGetParameterAnnotations()
|
D | MethodTest.java | 24 import libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.AnnotationC; 37 @AnnotationC 43 checkAnnotatedElementPresentMethods(method, AnnotationB.class, AnnotationC.class); in testMethodAnnotations()
|
D | ConstructorTest.java | 24 import libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.AnnotationC; 37 @AnnotationC 43 checkAnnotatedElementPresentMethods(constructor, AnnotationA.class, AnnotationC.class); in testConstructorAnnotations()
|
D | AnnotatedElementParameterTest.java | 28 import libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.AnnotationC; 48 @AnnotationC @AnnotationD String parameter2) {} in methodWithAnnotatedParameters() 70 checkAnnotatedElementPresentMethods(parameter1, AnnotationC.class, AnnotationD.class); in testMethodParameterAnnotations() 80 @AnnotationC @AnnotationD String parameter2) {} in ConstructorClass() 102 checkAnnotatedElementPresentMethods(parameter1, AnnotationC.class, AnnotationD.class); in testConstructorParameterAnnotations()
|