Home
last modified time | relevance | path

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

/libcore/libart/src/main/java/java/lang/reflect/
DConstructor.java200 return AnnotationAccess.getDeclaredAnnotation(this, annotationType); in getAnnotation()
DMethod.java300 return AnnotationAccess.getDeclaredAnnotation(this, annotationType); in getAnnotation()
DField.java252 return AnnotationAccess.getDeclaredAnnotation(this, annotationType); in getAnnotation()
/libcore/luni/src/main/java/libcore/reflect/
DAnnotationAccess.java72 A annotation = getDeclaredAnnotation(c, annotationType); in getAnnotation()
79 annotation = getDeclaredAnnotation(sup, annotationType); in getAnnotation()
167 public static <A extends Annotation> A getDeclaredAnnotation( in getDeclaredAnnotation() method in AnnotationAccess