HomeSort by relevance Sort by last modified time
    Searched full:singleannotation (Results 1 - 8 of 8) sorted by null

  /libcore/luni/src/test/java/libcore/java/lang/reflect/annotations/singleannotation/
SingleAnnotation.java 17 package libcore.java.lang.reflect.annotations.singleannotation;
25 public class SingleAnnotation {
package-info.java 21 package libcore.java.lang.reflect.annotations.singleannotation;
  /libcore/luni/src/test/java/libcore/java/lang/reflect/annotations/
ClassTest.java 59 private static class SingleAnnotation {}
74 private static class InheritedNoNewAnnotation extends SingleAnnotation {}
77 private static class InheritedSingleWithNewSingleAnnotation extends SingleAnnotation {}
81 private static class InheritedSingleWithNewMultipleAnnotations extends SingleAnnotation {}
93 assertIsAnnotationPresent(SingleAnnotation.class, repeated, true);
106 assertIsAnnotationPresent(SingleAnnotation.class, container, false);
121 assertGetDeclaredAnnotation(SingleAnnotation.class, repeated, "@Repeated(1)");
137 assertGetDeclaredAnnotation(SingleAnnotation.class, container, null);
159 SingleAnnotation.class, repeated, new String[] { "@Repeated(1)" });
186 SingleAnnotation.class, container, EXPECT_EMPTY)
    [all...]
PackageTest.java 28 import libcore.java.lang.reflect.annotations.singleannotation.SingleAnnotation;
40 checkDeclaredAnnotation(SingleAnnotation.class, repeated, "@Repeated(1)");
47 checkDeclaredAnnotation(SingleAnnotation.class, container, null);
72 assertGetDeclaredAnnotationsByType(SingleAnnotation.class, repeated,
83 assertGetDeclaredAnnotationsByType(SingleAnnotation.class, container, EXPECT_EMPTY);
103 assertGetAnnotationsByType(SingleAnnotation.class, repeated, "@Repeated(1)");
113 assertGetAnnotationsByType(SingleAnnotation.class, container, EXPECT_EMPTY);
FieldTest.java 48 private Object singleAnnotation;
73 checkDeclaredAnnotation(c, "singleAnnotation", repeated, "@Repeated(1)");
83 checkDeclaredAnnotation(c, "singleAnnotation", container, null);
109 assertGetDeclaredAnnotationsByType(c, repeated, "singleAnnotation", "@Repeated(1)");
119 assertGetDeclaredAnnotationsByType(c, container, "singleAnnotation", EXPECT_EMPTY);
141 assertGetAnnotationsByType(c, repeated, "singleAnnotation", "@Repeated(1)");
151 assertGetAnnotationsByType(c, container, "singleAnnotation", EXPECT_EMPTY);
MethodTest.java 48 public void singleAnnotation() {}
73 checkDeclaredAnnotation(c, "singleAnnotation", repeated, "@Repeated(1)");
83 checkDeclaredAnnotation(c, "singleAnnotation", container, null);
109 assertGetDeclaredAnnotationsByType(c, repeated, "singleAnnotation", "@Repeated(1)");
119 assertGetDeclaredAnnotationsByType(c, container, "singleAnnotation", EXPECT_EMPTY);
141 assertGetAnnotationsByType(c, repeated, "singleAnnotation", "@Repeated(1)");
151 assertGetAnnotationsByType(c, container, "singleAnnotation", EXPECT_EMPTY);
ExecutableParameterTest.java 80 void singleAnnotation(@Repeated(1) String p0) {}
103 return AnnotatedMethodClass.class.getDeclaredMethod("singleAnnotation", String.class);
AnnotatedElementParameterTest.java 116 void singleAnnotation(@Repeated(1) String p0) {}
139 return AnnotatedMethodClass.class.getDeclaredMethod("singleAnnotation", String.class);

Completed in 372 milliseconds