Home
last modified time | relevance | path

Searched refs:HasDefaultsAnnotation (Results 1 – 2 of 2) sorted by relevance

/external/javapoet/src/test/java/com/squareup/javapoet/
DAnnotationSpecTest.java54 public @interface HasDefaultsAnnotation { annotation in AnnotationSpecTest
94 @HasDefaultsAnnotation(
194 AnnotationSpec.Builder builder = AnnotationSpec.builder(HasDefaultsAnnotation.class); in emptyArray()
207 AnnotationSpec.Builder builder = AnnotationSpec.builder(HasDefaultsAnnotation.class); in dynamicArrayOfEnumConstants()
265 HasDefaultsAnnotation annotation = IsAnnotated.class.getAnnotation(HasDefaultsAnnotation.class); in reflectAnnotation()
299 HasDefaultsAnnotation annotation = IsAnnotated.class.getAnnotation(HasDefaultsAnnotation.class); in reflectAnnotationWithDefaults()
357 AnnotationSpec.Builder builder = AnnotationSpec.builder(HasDefaultsAnnotation.class); in disallowsNullMemberName()
367 AnnotationSpec.Builder builder = AnnotationSpec.builder(HasDefaultsAnnotation.class); in requiresValidMemberName()
/external/kotlinpoet/kotlinpoet/src/commonTest/kotlin/com/squareup/kotlinpoet/
DAnnotationSpecTest.kt49 annotation class HasDefaultsAnnotation( class in com.squareup.kotlinpoet.AnnotationSpecTest
70 @HasDefaultsAnnotation(
158 val builder = AnnotationSpec.builder(HasDefaultsAnnotation::class.java) in emptyArray()
177 val annotation = IsAnnotated::class.java.getAnnotation(HasDefaultsAnnotation::class.java) in reflectAnnotation()
205 val annotation = IsAnnotated::class.java.getAnnotation(HasDefaultsAnnotation::class.java) in reflectAnnotationWithDefaults()