Home
last modified time | relevance | path

Searched refs:AnnotatedClass (Results 1 – 4 of 4) sorted by relevance

/libcore/luni/src/test/java/libcore/java/lang/reflect/annotations/
DConstructorTest.java47 private static class AnnotatedClass { class in ConstructorTest
49 public AnnotatedClass() {} in AnnotatedClass() method in ConstructorTest.AnnotatedClass
53 public AnnotatedClass(int a) {} in AnnotatedClass() method in ConstructorTest.AnnotatedClass
56 public AnnotatedClass(int a, int b) {} in AnnotatedClass() method in ConstructorTest.AnnotatedClass
60 public AnnotatedClass(int a, int b, int c) {} in AnnotatedClass() method in ConstructorTest.AnnotatedClass
62 public AnnotatedClass(int a, int b, int c, int d) {} in AnnotatedClass() method in ConstructorTest.AnnotatedClass
67 Class<?> c = AnnotatedClass.class; in testDeclaredAnnotation()
98 Class<?> c = AnnotatedClass.class; in testGetDeclaredAnnotationsByType()
127 Class<?> c = AnnotatedClass.class; in testGetAnnotationsByType()
DMethodTest.java46 private static class AnnotatedClass { class in MethodTest
66 Class<?> c = AnnotatedClass.class; in testDeclaredAnnotation()
99 Class<?> c = AnnotatedClass.class; in testGetDeclaredAnnotationsByType()
131 Class<?> c = AnnotatedClass.class; in testGetAnnotationsByType()
DFieldTest.java46 private static class AnnotatedClass { class in FieldTest
66 Class<?> c = AnnotatedClass.class; in testDeclaredAnnotation()
99 Class<?> c = AnnotatedClass.class; in testGetDeclaredAnnotationsByType()
131 Class<?> c = AnnotatedClass.class; in testGetAnnotationsByType()
/libcore/luni/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/
DAnnotationTest.java36 Annotation [] annotations = AnnotatedClass.class.getDeclaredAnnotations(); in test_annotationType()
53 List<Method> methods = Arrays.asList(AnnotatedClass.class.getDeclaredMethods()); in test_equals()
66 mlist.add(AnnotatedClass.class.getDeclaredMethod(name, new Class[] {})); in test_equals()
103 Annotation a1 = AnnotatedClass.class.getDeclaredAnnotations()[0]; in test_hashCode()
107 Method m1 = AnnotatedClass.class.getDeclaredMethod("e34c", new Class[] {}); in test_hashCode()
155 class AnnotatedClass { class