/external/proguard/src/proguard/classfile/attribute/annotation/ |
D | AnnotationElementValue.java | 33 public Annotation annotationValue; field in AnnotationElementValue 48 Annotation annotationValue) in AnnotationElementValue() argument 52 this.annotationValue = annotationValue; in AnnotationElementValue() 61 annotationVisitor.visitAnnotation(clazz, annotationValue); in annotationAccept()
|
/external/dagger2/java/dagger/internal/codegen/validation/ |
D | ValidationReport.java | 108 if (item.annotationValue().isPresent()) { in printMessagesTo() 114 item.annotationValue().get()); in printMessagesTo() 150 abstract Optional<AnnotationValue> annotationValue(); in annotationValue() method in ValidationReport.Item 195 AnnotationValue annotationValue) { in addError() argument 196 return addItem(message, ERROR, element, annotation, annotationValue); in addError() 215 AnnotationValue annotationValue) { in addWarning() argument 216 return addItem(message, WARNING, element, annotation, annotationValue); in addWarning() 235 AnnotationValue annotationValue) { in addNote() argument 236 return addItem(message, NOTE, element, annotation, annotationValue); in addNote() 252 AnnotationValue annotationValue) { in addItem() argument [all …]
|
/external/dagger2/java/dagger/internal/codegen/binding/ |
D | BindingDeclarationFormatter.java | 106 StringBuilder annotationValue = new StringBuilder(); in formatSubcomponentDeclaration() local 108 annotationValue.append("{"); in formatSubcomponentDeclaration() 110 annotationValue.append( in formatSubcomponentDeclaration() 116 annotationValue.append("}"); in formatSubcomponentDeclaration() 122 annotationValue, in formatSubcomponentDeclaration()
|
/external/dagger2/java/dagger/internal/codegen/base/ |
D | MoreAnnotationValues.java | 38 public static ImmutableList<AnnotationValue> asAnnotationValues(AnnotationValue annotationValue) { in asAnnotationValues() argument 39 return annotationValue.accept(AS_ANNOTATION_VALUES, null); in asAnnotationValues() 62 public static TypeMirror asType(AnnotationValue annotationValue) { in asType() argument 63 return AS_TYPE.visit(annotationValue); in asType()
|
/external/dagger2/java/dagger/hilt/processor/internal/ |
D | AnnotationValues.java | 108 private static <T> T valueOfType(AnnotationValue annotationValue, Class<T> type) { in valueOfType() argument 109 Object value = annotationValue.getValue(); in valueOfType() 168 AnnotationValue annotationValue) { in getAnnotationValues() argument 169 return annotationValue.accept(AS_ANNOTATION_VALUES, null); in getAnnotationValues()
|
/external/auto/common/src/test/java/com/google/auto/common/ |
D | SimpleTypeAnnotationValueTest.java | 56 AnnotationValue annotationValue = SimpleTypeAnnotationValue.of(primitiveType); in primitiveClass() local 57 assertThat(annotationValue.getValue()).isEqualTo(primitiveType); in primitiveClass()
|
/external/turbine/java/com/google/turbine/processing/ |
D | TurbineAnnotationMirror.java | 54 static TurbineAnnotationValueMirror annotationValue(ModelFactory factory, Const value) { in annotationValue() method in TurbineAnnotationMirror 120 annotationValue(factory, value.getValue())); in TurbineAnnotationMirror() 140 result.put(element, annotationValue(factory, method.defaultValue())); in TurbineAnnotationMirror() 211 values.add(annotationValue(factory, element)); in TurbineArrayConstant()
|
D | TurbineElement.java | 777 ? TurbineAnnotationMirror.annotationValue(factory, info().defaultValue()) in getDefaultValue()
|
/external/auto/value/src/main/java/com/google/auto/value/processor/ |
D | AutoAnnotationProcessor.java | 201 private static Optional<Integer> invariableHash(AnnotationValue annotationValue) { in invariableHash() argument 202 Object value = annotationValue.getValue(); in invariableHash() 217 for (AnnotationValue annotationValue : annotationValues) { in invariableHash() 218 Optional<Integer> maybeHash = invariableHash(annotationValue); in invariableHash() 237 AnnotationValue annotationValue = member.method.getDefaultValue(); in invariableHashes() local 238 Optional<Integer> invariableHash = invariableHash(annotationValue); in invariableHashes()
|
D | AnnotationOutput.java | 209 AnnotationValue annotationValue, in sourceFormForInitializer() argument 216 visitor.visit(annotationValue, sb); in sourceFormForInitializer()
|
D | AutoValueOrOneOfProcessor.java | 924 .map(annotationValue -> (DeclaredType) annotationValue.getValue()) in getExcludedAnnotationTypes()
|
/external/testng/src/main/java/org/testng/reporters/ |
D | TestHTMLReporter.java | 343 return annotationValue(tm2) - annotationValue(tm1); in compare() 346 private static int annotationValue(ITestNGMethod method) { in annotationValue() method in TestHTMLReporter.ConfigurationComparator
|
/external/turbine/java/com/google/turbine/lower/ |
D | Lower.java | 302 ElementValue defaultValue = m.defaultValue() != null ? annotationValue(m.defaultValue()) : null; in lowerMethod() 534 result.put(entry.getKey(), annotationValue(entry.getValue())); in annotationValues() 539 private ElementValue annotationValue(Const value) { in annotationValue() method in Lower 558 values.add(annotationValue(element)); in annotationValue() 564 TurbineAnnotationValue annotationValue = (TurbineAnnotationValue) value; in annotationValue() local 565 Boolean visible = isVisible(annotationValue.sym()); in annotationValue() 571 sig.objectType(annotationValue.sym()), in annotationValue() 573 annotationValues(annotationValue.values()))); in annotationValue()
|
/external/javassist/src/main/javassist/bytecode/annotation/ |
D | AnnotationMemberValue.java | 90 writer.annotationValue(); in write()
|
D | AnnotationsWriter.java | 331 public void annotationValue() throws IOException { in annotationValue() method in AnnotationsWriter
|
/external/dagger2/java/dagger/model/ |
D | Key.java | 137 private static String stableAnnotationValueToString(AnnotationValue annotationValue) { in stableAnnotationValueToString() argument 138 return annotationValue.accept( in stableAnnotationValueToString()
|
/external/proguard/src/proguard/classfile/editor/ |
D | AnnotationAdder.java | 122 targetAnnotationElementValue.annotationValue = newAnnotation; in visitAnnotation()
|
/external/auto/common/src/main/java/com/google/auto/common/ |
D | SuperficialValidation.java | 280 AnnotationValue annotationValue, TypeMirror expectedType) { in validateAnnotationValue() argument 281 return annotationValue.accept(VALUE_VALIDATING_VISITOR, expectedType); in validateAnnotationValue()
|
D | AnnotationValues.java | 223 private static <T> T valueOfType(AnnotationValue annotationValue, Class<T> type) { in valueOfType() argument 224 Object value = annotationValue.getValue(); in valueOfType()
|
/external/dagger2/java/dagger/internal/codegen/javac/ |
D | JavacPluginModule.java | 75 AnnotationValue annotationValue) {} in printMessage() argument
|
/external/proguard/src/proguard/classfile/io/ |
D | ProgramClassReader.java | 937 Annotation annotationValue = new Annotation(); in visitAnnotationElementValue() local 938 visitAnnotation(clazz, annotationValue); in visitAnnotationElementValue() 939 annotationElementValue.annotationValue = annotationValue; in visitAnnotationElementValue()
|
D | ProgramClassWriter.java | 861 attributeBodyWriter.visitAnnotation(clazz, annotationElementValue.annotationValue); in visitAnnotationElementValue()
|
/external/auto/value/src/main/java/com/google/auto/value/extension/memoized/processor/ |
D | MemoizeExtension.java | 352 annotationValue -> in getExcludedAnnotationTypes() 353 MoreTypes.equivalence().wrap((TypeMirror) annotationValue.getValue())) in getExcludedAnnotationTypes()
|
/external/javassist/src/main/javassist/bytecode/ |
D | AnnotationsAttribute.java | 612 writer.annotationValue(); in annotationMemberValue()
|