Home
last modified time | relevance | path

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

/libcore/luni/src/test/java/libcore/java/lang/reflect/annotations/
DClassTest.java25 import libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.Repeated;
38 Repeated.class.isAnnotationPresent(Inherited.class); in setUp()
58 @Repeated(1)
61 @Repeated(1)
62 @Repeated(2)
65 @Container({@Repeated(1)})
68 @Repeated(1)
69 @Container({@Repeated(2), @Repeated(3)})
76 @Repeated(2)
79 @Repeated(2)
[all …]
DExecutableParameterTest.java32 import libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.Repeated;
74 @Repeated(1) @Container({@Repeated(2), @Repeated(3)}) String p0) {} in multipleAnnotationOddity()
76 void multipleAnnotationExplicitSingle(@Container({@Repeated(1)}) String p0) {} in multipleAnnotationExplicitSingle()
78 void multipleAnnotation(@Repeated(1) @Repeated(2) String p0) {} in multipleAnnotation()
80 void singleAnnotation(@Repeated(1) String p0) {} in singleAnnotation()
82 static void staticSingleAnnotation(@Repeated(1) String p0) {} in staticSingleAnnotation()
113 abstract void abstractSingleAnnotation(@Repeated(1) String p0); in abstractSingleAnnotation()
177 @Repeated(1) @Container({@Repeated(2), @Repeated(3)}) Long p0) {} in AnnotatedConstructorClass()
179 public AnnotatedConstructorClass(@Container({@Repeated(1)}) Double p0) {} in AnnotatedConstructorClass()
181 public AnnotatedConstructorClass(@Repeated(1) @Repeated(2) Integer p0) {} in AnnotatedConstructorClass()
[all …]
DFieldTest.java26 import libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.Repeated;
47 @Repeated(1)
50 @Repeated(1)
51 @Repeated(2)
54 @Container({@Repeated(1)})
57 @Repeated(1)
58 @Container({@Repeated(2), @Repeated(3)})
68 Class<? extends Annotation> repeated = Repeated.class; in testDeclaredAnnotation()
101 Class<? extends Annotation> repeated = Repeated.class; in testGetDeclaredAnnotationsByType()
133 Class<? extends Annotation> repeated = Repeated.class; in testGetAnnotationsByType()
DMethodTest.java26 import libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.Repeated;
47 @Repeated(1)
50 @Repeated(1)
51 @Repeated(2)
54 @Container({@Repeated(1)})
57 @Repeated(1)
58 @Container({@Repeated(2), @Repeated(3)})
68 Class<? extends Annotation> repeated = Repeated.class; in testDeclaredAnnotation()
101 Class<? extends Annotation> repeated = Repeated.class; in testGetDeclaredAnnotationsByType()
133 Class<? extends Annotation> repeated = Repeated.class; in testGetAnnotationsByType()
DConstructorTest.java26 import libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.Repeated;
48 @Repeated(1)
51 @Repeated(1)
52 @Repeated(2)
55 @Container({@Repeated(1)})
58 @Repeated(1)
59 @Container({@Repeated(2), @Repeated(3)})
69 Class<? extends Annotation> repeated = Repeated.class; in testDeclaredAnnotation()
100 Class<? extends Annotation> repeated = Repeated.class; in testGetDeclaredAnnotationsByType()
129 Class<? extends Annotation> repeated = Repeated.class; in testGetAnnotationsByType()
DAnnotatedElementParameterTest.java31 import libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.Repeated;
110 @Repeated(1) @Container({@Repeated(2), @Repeated(3)}) String p0) {} in multipleAnnotationOddity()
112 void multipleAnnotationExplicitSingle(@Container({@Repeated(1)}) String p0) {} in multipleAnnotationExplicitSingle()
114 void multipleAnnotation(@Repeated(1) @Repeated(2) String p0) {} in multipleAnnotation()
116 void singleAnnotation(@Repeated(1) String p0) {} in singleAnnotation()
118 static void staticSingleAnnotation(@Repeated(1) String p0) {} in staticSingleAnnotation()
149 abstract void abstractSingleAnnotation(@Repeated(1) String p0); in abstractSingleAnnotation()
159 Class<? extends Annotation> repeated = Repeated.class; in testMethodDeclaredAnnotation_repeated()
204 @Repeated(1) @Container({@Repeated(2), @Repeated(3)}) Long p0) {} in AnnotatedConstructorClass()
206 public AnnotatedConstructorClass(@Container({@Repeated(1)}) Double p0) {} in AnnotatedConstructorClass()
[all …]
DPackageTest.java23 import libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.Repeated;
38 Class<Repeated> repeated = Repeated.class; in testDeclaredAnnotation()
69 Class<Repeated> repeated = Repeated.class; in testGetDeclaredAnnotationsByType()
101 Class<Repeated> repeated = Repeated.class; in testGetAnnotationsByType()
DAnnotatedElementTestSupport.java69 Repeated[] value(); in value()
77 public @interface Repeated { annotation in AnnotatedElementTestSupport
300 if (annotation instanceof Repeated) { in createArgumentsTestString()
301 Repeated repeated = (Repeated) annotation; in createArgumentsTestString()
/libcore/luni/src/test/java/libcore/java/lang/reflect/annotations/multipleannotationoddity/
Dpackage-info.java20 @Repeated(1)
21 @Container({@Repeated(2), @Repeated(3)})
25 import libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.Repeated;
/libcore/luni/src/test/java/libcore/java/lang/reflect/annotations/multipleannotation/
Dpackage-info.java20 @Repeated(1)
21 @Repeated(2)
24 import libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.Repeated;
/libcore/luni/src/test/java/libcore/java/lang/reflect/annotations/singleannotation/
Dpackage-info.java20 @Repeated(1)
23 import libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.Repeated;
/libcore/luni/src/test/java/libcore/java/lang/reflect/annotations/multipleannotationexplicitsingle/
Dpackage-info.java20 @Container({@Repeated(1)})
24 import libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.Repeated;