Home
last modified time | relevance | path

Searched refs:AnnotationValue (Results 1 – 9 of 9) sorted by relevance

/aosp14/frameworks/base/tools/processors/view_inspector/src/java/android/processor/view/inspector/
H A DAnnotationUtils.java30 import javax.lang.model.element.AnnotationValue;
166 List<AnnotationValue> untypedArrayValuesByName( in untypedArrayValuesByName()
172 List<AnnotationValue> typedValues = new ArrayList<>(untypedValues.size()); in untypedArrayValuesByName()
175 if (untypedValue instanceof AnnotationValue) { in untypedArrayValuesByName()
176 typedValues.add((AnnotationValue) untypedValue); in untypedArrayValuesByName()
279 Optional<AnnotationValue> valueByName(
282 final Map<? extends ExecutableElement, ? extends AnnotationValue> valueMap =
H A DProcessingException.java26 import javax.lang.model.element.AnnotationValue;
35 private final @Nullable AnnotationValue mAnnotationValue;
56 @Nullable AnnotationValue annotationValue) { in ProcessingException()
H A DInspectablePropertyProcessor.java34 import javax.lang.model.element.AnnotationValue;
320 final Optional<AnnotationValue> enumMapping = in determinePropertyType()
322 final Optional<AnnotationValue> flagMapping = in determinePropertyType()
/aosp14/frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyTestApp/src/com/android/multidexlegacytestapp/annotation/
H A DAnnotationValue.java19 public enum AnnotationValue { enum
H A DAnnotated.java19 @TestAnnotation(AnnotationValue.V1)
H A DAnnotated2.java19 @TestAnnotation2(AnnotationValue.V1)
H A DTestAnnotation2.java24 AnnotationValue value(); in value()
H A DTestAnnotation.java24 AnnotationValue value(); in value()
/aosp14/frameworks/base/tools/processors/intdef_mappings/src/android/processor/
H A DIntDefProcessor.kt30 import javax.lang.model.element.AnnotationValue
94 val values = value.value as List<AnnotationValue>