Home
last modified time | relevance | path

Searched refs:annotationValue (Results 1 – 24 of 24) sorted by relevance

/external/proguard/src/proguard/classfile/attribute/annotation/
DAnnotationElementValue.java33 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/
DValidationReport.java108 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/
DBindingDeclarationFormatter.java106 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/
DMoreAnnotationValues.java38 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/
DAnnotationValues.java108 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/
DSimpleTypeAnnotationValueTest.java56 AnnotationValue annotationValue = SimpleTypeAnnotationValue.of(primitiveType); in primitiveClass() local
57 assertThat(annotationValue.getValue()).isEqualTo(primitiveType); in primitiveClass()
/external/turbine/java/com/google/turbine/processing/
DTurbineAnnotationMirror.java54 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()
DTurbineElement.java777 ? TurbineAnnotationMirror.annotationValue(factory, info().defaultValue()) in getDefaultValue()
/external/auto/value/src/main/java/com/google/auto/value/processor/
DAutoAnnotationProcessor.java201 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()
DAnnotationOutput.java209 AnnotationValue annotationValue, in sourceFormForInitializer() argument
216 visitor.visit(annotationValue, sb); in sourceFormForInitializer()
DAutoValueOrOneOfProcessor.java924 .map(annotationValue -> (DeclaredType) annotationValue.getValue()) in getExcludedAnnotationTypes()
/external/testng/src/main/java/org/testng/reporters/
DTestHTMLReporter.java343 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/
DLower.java302 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/
DAnnotationMemberValue.java90 writer.annotationValue(); in write()
DAnnotationsWriter.java331 public void annotationValue() throws IOException { in annotationValue() method in AnnotationsWriter
/external/dagger2/java/dagger/model/
DKey.java137 private static String stableAnnotationValueToString(AnnotationValue annotationValue) { in stableAnnotationValueToString() argument
138 return annotationValue.accept( in stableAnnotationValueToString()
/external/proguard/src/proguard/classfile/editor/
DAnnotationAdder.java122 targetAnnotationElementValue.annotationValue = newAnnotation; in visitAnnotation()
/external/auto/common/src/main/java/com/google/auto/common/
DSuperficialValidation.java280 AnnotationValue annotationValue, TypeMirror expectedType) { in validateAnnotationValue() argument
281 return annotationValue.accept(VALUE_VALIDATING_VISITOR, expectedType); in validateAnnotationValue()
DAnnotationValues.java223 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/
DJavacPluginModule.java75 AnnotationValue annotationValue) {} in printMessage() argument
/external/proguard/src/proguard/classfile/io/
DProgramClassReader.java937 Annotation annotationValue = new Annotation(); in visitAnnotationElementValue() local
938 visitAnnotation(clazz, annotationValue); in visitAnnotationElementValue()
939 annotationElementValue.annotationValue = annotationValue; in visitAnnotationElementValue()
DProgramClassWriter.java861 attributeBodyWriter.visitAnnotation(clazz, annotationElementValue.annotationValue); in visitAnnotationElementValue()
/external/auto/value/src/main/java/com/google/auto/value/extension/memoized/processor/
DMemoizeExtension.java352 annotationValue -> in getExcludedAnnotationTypes()
353 MoreTypes.equivalence().wrap((TypeMirror) annotationValue.getValue())) in getExcludedAnnotationTypes()
/external/javassist/src/main/javassist/bytecode/
DAnnotationsAttribute.java612 writer.annotationValue(); in annotationMemberValue()