Home
last modified time | relevance | path

Searched refs:ExampleAnnotation (Results 1 – 4 of 4) sorted by relevance

/external/guava/android/guava-tests/test/com/google/common/base/
DEnumsTest.java178 private @interface ExampleAnnotation {} annotation in EnumsTest
181 @ExampleAnnotation enumConstant
191 assertTrue(foo.isAnnotationPresent(ExampleAnnotation.class)); in testGetField()
195 assertFalse(bar.isAnnotationPresent(ExampleAnnotation.class)); in testGetField()
/external/guava/guava-tests/test/com/google/common/base/
DEnumsTest.java178 private @interface ExampleAnnotation {} annotation in EnumsTest
181 @ExampleAnnotation enumConstant
191 assertTrue(foo.isAnnotationPresent(ExampleAnnotation.class)); in testGetField()
195 assertFalse(bar.isAnnotationPresent(ExampleAnnotation.class)); in testGetField()
/external/kotlinpoet/interop/ksp/test-processor/src/main/kotlin/com/squareup/kotlinpoet/ksp/test/processor/
DexampleAnnotations.kt20 annotation class ExampleAnnotation class
DTestProcessor.kt62 resolver.getSymbolsWithAnnotation(ExampleAnnotation::class.java.canonicalName) in <lambda>()