Home
last modified time | relevance | path

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

/libcore/luni/src/test/java/libcore/java/lang/reflect/annotations/
DAnnotationsTest.java23 import libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.AnnotationB;
54 Class l() default AnnotationB.class; in l()
73 assertEquals(AnnotationB.class, defaultValue("l")); in testAnnotationDefaults()
DAnnotatedElementTestSupport.java56 public @interface AnnotationB {} annotation in AnnotatedElementTestSupport
114 assertPresent(expectedTypes.contains(AnnotationB.class), element, AnnotationB.class); in checkAnnotatedElementPresentMethods()
152 assertDeclared(expectedTypes.contains(AnnotationB.class), element, AnnotationB.class); in checkAnnotatedElementDirectMethods()
DExecutableParameterTest.java28 import libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.AnnotationB;
48 public void methodWithAnnotatedParameters(@AnnotationB @AnnotationD String parameter1, in methodWithAnnotatedParameters()
64 assertEquals(set(AnnotationB.class, AnnotationD.class), in testMethodGetParameterAnnotations()
151 public ConstructorClass(@AnnotationB @AnnotationD String parameter1, in ConstructorClass()
167 assertEquals(set(AnnotationB.class, AnnotationD.class), in testConstructorGetParameterAnnotations()
DClassTest.java23 import libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.AnnotationB;
42 @AnnotationB
49 checkAnnotatedElementPresentMethods(Type.class, AnnotationA.class, AnnotationB.class); in testClassDirectAnnotations()
50 checkAnnotatedElementDirectMethods(Type.class, AnnotationA.class, AnnotationB.class); in testClassDirectAnnotations()
54 checkAnnotatedElementPresentMethods(ExtendsType.class, AnnotationB.class); in testClassInheritedAnnotations()
DMethodTest.java23 import libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.AnnotationB;
36 @AnnotationB
43 checkAnnotatedElementPresentMethods(method, AnnotationB.class, AnnotationC.class); in testMethodAnnotations()
DAnnotatedElementParameterTest.java27 import libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.AnnotationB;
47 public void methodWithAnnotatedParameters(@AnnotationB @AnnotationD String parameter1, in methodWithAnnotatedParameters()
67 checkAnnotatedElementPresentMethods(parameter0, AnnotationB.class, AnnotationD.class); in testMethodParameterAnnotations()
79 public ConstructorClass(@AnnotationB @AnnotationD String parameter1, in ConstructorClass()
99 checkAnnotatedElementPresentMethods(parameter0, AnnotationB.class, AnnotationD.class); in testConstructorParameterAnnotations()