Searched refs:AnnotationValue (Results 1 – 10 of 10) sorted by relevance
30 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 =
26 import javax.lang.model.element.AnnotationValue;35 private final @Nullable AnnotationValue mAnnotationValue;56 @Nullable AnnotationValue annotationValue) { in ProcessingException()
34 import javax.lang.model.element.AnnotationValue;320 final Optional<AnnotationValue> enumMapping = in determinePropertyType()322 final Optional<AnnotationValue> flagMapping = in determinePropertyType()
85 union AnnotationValue { union89 AnnotationValue(const int value) : intValue(value) { in AnnotationValue() function91 AnnotationValue(const bool value) : boolValue(value) { in AnnotationValue() function99 AnnotationValue value;102 AnnotationValue value) in Annotation()
156 const AnnotationValue annotationValue) { in addAnnotationToAtomDecl()194 ANNOTATION_TYPE_BOOL, AnnotationValue(true)); in collate_field_annotations()209 AnnotationValue(true)); in collate_field_annotations()230 ANNOTATION_TYPE_BOOL, AnnotationValue(true)); in collate_field_annotations()238 ANNOTATION_TYPE_INT, AnnotationValue(defaultState)); in collate_field_annotations()246 ANNOTATION_TYPE_INT, AnnotationValue(triggerStateReset)); in collate_field_annotations()254 ANNOTATION_TYPE_BOOL, AnnotationValue(nested)); in collate_field_annotations()270 ANNOTATION_TYPE_BOOL, AnnotationValue(true)); in collate_field_annotations()525 AnnotationValue(true)); in collate_atoms()
19 public enum AnnotationValue { enum
19 @TestAnnotation(AnnotationValue.V1)
19 @TestAnnotation2(AnnotationValue.V1)
24 AnnotationValue value(); in value()