Home
last modified time | relevance | path

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

/frameworks/base/tools/processors/view_inspector/src/java/android/processor/view/inspector/
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 =
DProcessingException.java26 import javax.lang.model.element.AnnotationValue;
35 private final @Nullable AnnotationValue mAnnotationValue;
56 @Nullable AnnotationValue annotationValue) { in ProcessingException()
DInspectablePropertyProcessor.java34 import javax.lang.model.element.AnnotationValue;
320 final Optional<AnnotationValue> enumMapping = in determinePropertyType()
322 final Optional<AnnotationValue> flagMapping = in determinePropertyType()
/frameworks/proto_logging/stats/stats_log_api_gen/
DCollation.h105 union AnnotationValue { union
109 explicit AnnotationValue(const int value) : intValue(value) { in AnnotationValue() function
111 explicit AnnotationValue(const bool value) : boolValue(value) { in AnnotationValue() function
119 AnnotationValue value;
122 AnnotationValue value) in Annotation()
DCollation.cpp150 const AnnotationValue annotationValue) { in addAnnotationToAtomDecl()
197 ANNOTATION_TYPE_BOOL, AnnotationValue(true)); in collate_field_annotations()
212 AnnotationValue(true)); in collate_field_annotations()
233 ANNOTATION_TYPE_BOOL, AnnotationValue(true)); in collate_field_annotations()
241 ANNOTATION_TYPE_INT, AnnotationValue(defaultState)); in collate_field_annotations()
249 ANNOTATION_TYPE_INT, AnnotationValue(triggerStateReset)); in collate_field_annotations()
257 ANNOTATION_TYPE_BOOL, AnnotationValue(nested)); in collate_field_annotations()
272 AnnotationValue(true)); in collate_field_annotations()
513 AnnotationValue(true)); in collate_from_field_descriptor()
/frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyTestApp/src/com/android/multidexlegacytestapp/annotation/
DAnnotationValue.java19 public enum AnnotationValue { enum
DAnnotated.java19 @TestAnnotation(AnnotationValue.V1)
DAnnotated2.java19 @TestAnnotation2(AnnotationValue.V1)
DTestAnnotation2.java24 AnnotationValue value(); in value()
DTestAnnotation.java24 AnnotationValue value(); in value()
/frameworks/base/tools/processors/intdef_mappings/src/android/processor/
DIntDefProcessor.kt30 import javax.lang.model.element.AnnotationValue
94 val values = value.value as List<AnnotationValue>