Lines Matching refs:AnnotationValue

34 import javax.lang.model.element.AnnotationValue;
2367 Map<? extends ExecutableElement, ? extends AnnotationValue> pairs = aDesc.getElementValues();
2371 AnnotationValue annotationValue = pairs.get(ee);
2372 List<AnnotationValue> annotationTypeValues = new ArrayList<>();
2374 new SimpleAnnotationValueVisitor9<Void, List<AnnotationValue>>() {
2376 public Void visitArray(List<? extends AnnotationValue> vals, List<AnnotationValue> p) {
2382 protected Void defaultAction(Object o, List<AnnotationValue> p) {
2389 for (AnnotationValue av : annotationTypeValues) {
2400 List<AnnotationValue> annotationTypeValues = new ArrayList<>();
2401 for (AnnotationValue a : pairs.values()) {
2402 new SimpleAnnotationValueVisitor9<Void, List<AnnotationValue>>() {
2404 public Void visitArray(List<? extends AnnotationValue> vals, List<AnnotationValue> annotationTypeValues) {
2405 for (AnnotationValue av : vals) {
2413 for (AnnotationValue av : annotationTypeValues) {
2447 ContentBuilder annotation, Map<? extends ExecutableElement,? extends AnnotationValue>map,
2476 AnnotationValue annotationValue = map.get(element);
2477 List<AnnotationValue> annotationTypeValues = new ArrayList<>();
2478 new SimpleAnnotationValueVisitor9<Void, AnnotationValue>() {
2480 public Void visitArray(List<? extends AnnotationValue> vals, AnnotationValue p) {
2485 protected Void defaultAction(Object o, AnnotationValue p) {
2492 for (AnnotationValue av : annotationTypeValues) {
2512 private boolean isAnnotationArray(Map<? extends ExecutableElement, ? extends AnnotationValue> pairs) {
2513 AnnotationValue annotationValue;
2518 public Boolean visitArray(List<? extends AnnotationValue> vals, Void p) {
2554 private Content annotationValueToContent(AnnotationValue annotationValue) {
2591 public Content visitArray(List<? extends AnnotationValue> vals, Void p) {
2594 for (AnnotationValue av : vals) {