/external/proguard/src/proguard/classfile/editor/ |
D | ElementValuesEditor.java | 83 targetAnnotation.elementValues, in addElementValue() 87 targetAnnotation.elementValues = in addElementValue() 89 targetAnnotation.elementValues, in addElementValue() 100 targetArrayElementValue.elementValues, in addElementValue() 104 targetArrayElementValue.elementValues = in addElementValue() 106 targetArrayElementValue.elementValues, in addElementValue() 126 targetAnnotation.elementValues, in deleteElementValue() 134 targetArrayElementValue.elementValues, in deleteElementValue() 147 ElementValue[] elementValues, in replaceElementValue() argument 152 elementValues, in replaceElementValue() [all …]
|
/external/proguard/src/proguard/classfile/attribute/annotation/ |
D | ArrayElementValue.java | 34 public ElementValue[] elementValues; field in ArrayElementValue 50 ElementValue[] elementValues) in ArrayElementValue() argument 55 this.elementValues = elementValues; in ArrayElementValue() 79 elementValues[index].accept(clazz, annotation, elementValueVisitor); in elementValuesAccept()
|
D | Annotation.java | 36 public ElementValue[] elementValues; field in Annotation 66 ElementValue[] elementValues) in Annotation() argument 70 this.elementValues = elementValues; in Annotation() 127 elementValues[index].accept(clazz, this, elementValueVisitor); in elementValuesAccept()
|
D | TypeAnnotation.java | 53 ElementValue[] elementValues, in TypeAnnotation() argument 57 super(u2typeIndex, u2elementValuesCount, elementValues); in TypeAnnotation()
|
/external/doclava/src/com/google/doclava/ |
D | AnnotationInstanceInfo.java | 36 public AnnotationInstanceInfo(ClassInfo type, AnnotationValueInfo[] elementValues) { in AnnotationInstanceInfo() argument 38 mElementValues = new ArrayList<AnnotationValueInfo>(Arrays.asList(elementValues)); in AnnotationInstanceInfo() 53 ArrayList<AnnotationValueInfo> elementValues() { in elementValues() method in AnnotationInstanceInfo 137 for (int elemIdx = 0; elemIdx < aii.elementValues().size(); ++elemIdx) { in makeLinkListHDF() 139 final AnnotationValueInfo value = aii.elementValues().get(elemIdx); in makeLinkListHDF()
|
D | AndroidAuxSource.java | 50 for (AnnotationValueInfo val : annotation.elementValues()) { in classAuxTags() 151 for (AnnotationValueInfo val : annotation.elementValues()) { in auxTags() 191 for (AnnotationValueInfo val : annotation.elementValues()) { in auxTags() 226 for (AnnotationValueInfo val : annotation.elementValues()) { in auxTags() 271 for (AnnotationValueInfo val : annotation.elementValues()) { in auxTags() 297 for (AnnotationValueInfo val : inner.elementValues()) { in auxTags()
|
D | AndroidLinter.java | 81 for (AnnotationValueInfo val : a.elementValues()) { in lintMethod()
|
D | Converter.java | 734 AnnotationDesc.ElementValuePair[] ev = a.elementValues(); 735 AnnotationValueInfo[] elementValues = new AnnotationValueInfo[ev.length]; 737 elementValues[i] = 740 return new AnnotationInstanceInfo(annotationType, elementValues);
|
D | Errors.java | 89 for (AnnotationValueInfo val : a.elementValues()) { in error()
|
D | Doclava.java | 1857 if (!annotation.elementValues().isEmpty()) { in writeSdkValues() 1858 String type = annotation.elementValues().get(0).valueString(); in writeSdkValues()
|
D | Stubs.java | 1696 for (AnnotationValueInfo val : a.elementValues()) {
|
/external/dagger2/java/dagger/internal/codegen/base/ |
D | SimpleAnnotationMirror.java | 40 private final ImmutableMap<ExecutableElement, ? extends AnnotationValue> elementValues; field in SimpleAnnotationMirror 58 this.elementValues = in SimpleAnnotationMirror() 72 return elementValues; in getElementValues()
|
/external/auto/common/src/main/java/com/google/auto/common/ |
D | SimpleAnnotationMirror.java | 47 private final ImmutableMap<ExecutableElement, ? extends AnnotationValue> elementValues; field in SimpleAnnotationMirror 79 this.elementValues = in SimpleAnnotationMirror() 110 return elementValues; in getElementValues()
|
/external/dagger2/java/dagger/model/ |
D | Key.java | 116 ImmutableMap<ExecutableElement, AnnotationValue> elementValues = in stableAnnotationMirrorToString() local 118 if (!elementValues.isEmpty()) { in stableAnnotationMirrorToString() 120 elementValues.forEach( in stableAnnotationMirrorToString()
|
/external/turbine/java/com/google/turbine/processing/ |
D | TurbineAnnotationMirror.java | 78 private final Supplier<ImmutableMap<ExecutableElement, AnnotationValue>> elementValues; field in TurbineAnnotationMirror 110 this.elementValues = in TurbineAnnotationMirror() 175 return elementValues.get(); in getElementValues()
|
/external/proguard/src/proguard/shrink/ |
D | ClassShrinker.java | 267 shrinkArray(annotation.elementValues, in visitAnnotation() 347 shrinkArray(arrayElementValue.elementValues, in visitArrayElementValue()
|
/external/proguard/src/proguard/classfile/io/ |
D | ProgramClassReader.java | 785 annotation.elementValues = new ElementValue[annotation.u2elementValuesCount]; in visitAnnotation() 792 annotation.elementValues[index] = elementValue; in visitAnnotation() 948 arrayElementValue.elementValues = new ElementValue[arrayElementValue.u2elementValuesCount]; in visitArrayElementValue() 953 arrayElementValue.elementValues[index] = elementValue; in visitArrayElementValue()
|
/external/doclava/res/assets/templates/ |
D | macros.cs | 209 each:elem = anno.elementValues ?><?cs
|
/external/dokka/core/src/main/kotlin/javadoc/ |
D | docbase.kt | 119 override fun elementValues(): Array<out AnnotationDesc.ElementValuePair>? = emptyArray() // TODO in annotationType() method in AnnotationDescAdapter
|