Searched refs:annotationMirror (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/tools/processors/view_inspector/src/java/android/processor/view/inspector/ |
D | AnnotationUtils.java | 127 @NonNull AnnotationMirror annotationMirror) { in typedArrayValuesByName() argument 128 return untypedArrayValuesByName(propertyName, element, annotationMirror) in typedArrayValuesByName() 137 annotationMirror, in typedArrayValuesByName() 150 annotationMirror, in typedArrayValuesByName() 169 @NonNull AnnotationMirror annotationMirror) { in untypedArrayValuesByName() argument 170 return typedValueByName(propertyName, List.class, element, annotationMirror) in untypedArrayValuesByName() 181 annotationMirror); in untypedArrayValuesByName() 207 AnnotationMirror annotationMirror) { 208 return valueByName(propertyName, annotationMirror).map(annotationValue -> { 217 annotationMirror, [all …]
|
D | ProcessingException.java | 48 @NonNull AnnotationMirror annotationMirror) { in ProcessingException() argument 49 this(message, element, annotationMirror, null); in ProcessingException() 55 @Nullable AnnotationMirror annotationMirror, in ProcessingException() argument 59 mAnnotationMirror = annotationMirror; in ProcessingException()
|
/frameworks/base/tools/processors/intdef_mappings/src/android/processor/ |
D | IntDefProcessor.kt | 80 val annotationMirror = annotatedElement.annotationMirrors constant 84 val value = annotationMirror.elementValues.entries 89 val tree = trees.getTree(annotatedElement, annotationMirror, value)
|