Home
last modified time | relevance | path

Searched refs:annotationSpec (Results 1 – 7 of 7) sorted by relevance

/external/javapoet/src/main/java/com/squareup/javapoet/
DFieldSpec.java136 for (AnnotationSpec annotationSpec : annotationSpecs) { in addAnnotations()
137 this.annotations.add(annotationSpec); in addAnnotations()
142 public Builder addAnnotation(AnnotationSpec annotationSpec) { in addAnnotation() argument
143 this.annotations.add(annotationSpec); in addAnnotation()
DParameterSpec.java162 for (AnnotationSpec annotationSpec : annotationSpecs) { in addAnnotations()
163 this.annotations.add(annotationSpec); in addAnnotations()
168 public Builder addAnnotation(AnnotationSpec annotationSpec) { in addAnnotation() argument
169 this.annotations.add(annotationSpec); in addAnnotation()
DCodeWriter.java165 for (AnnotationSpec annotationSpec : annotations) { in emitAnnotations()
166 annotationSpec.emit(this, inline); in emitAnnotations()
359 AnnotationSpec annotationSpec = (AnnotationSpec) o; in emitLiteral() local
360 annotationSpec.emit(this, true); in emitLiteral()
DTypeSpec.java450 for (AnnotationSpec annotationSpec : annotationSpecs) { in addAnnotations()
451 this.annotations.add(annotationSpec); in addAnnotations()
456 public Builder addAnnotation(AnnotationSpec annotationSpec) { in addAnnotation() argument
457 checkNotNull(annotationSpec, "annotationSpec == null"); in addAnnotation()
458 this.annotations.add(annotationSpec); in addAnnotation()
755 for (AnnotationSpec annotationSpec : annotations) { in build()
756 checkNotNull(annotationSpec, "annotationSpec == null"); in build()
DMethodSpec.java334 for (AnnotationSpec annotationSpec : annotationSpecs) { in addAnnotations()
335 this.annotations.add(annotationSpec); in addAnnotations()
340 public Builder addAnnotation(AnnotationSpec annotationSpec) { in addAnnotation() argument
341 this.annotations.add(annotationSpec); in addAnnotation()
/external/dagger2/java/dagger/hilt/android/processor/internal/androidentrypoint/
DGenerators.java90 AnnotationSpec annotationSpec = AnnotationSpec.get(annotationMirror); in getNullableAnnotationSpec() local
92 return AndroidClassNames.NULLABLE_INTERNAL.equals(annotationSpec.type) in getNullableAnnotationSpec()
94 : Optional.of(annotationSpec); in getNullableAnnotationSpec()
/external/auto/value/src/main/java/com/google/auto/value/extension/memoized/processor/
DMemoizeExtension.java417 AnnotationSpec annotationSpec = AnnotationSpec.get(annotation); in MethodOverrider() local
419 override.addAnnotation(annotationSpec); in MethodOverrider()