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.java180 private @interface ExampleAnnotation {} annotation in EnumsTest
183 @ExampleAnnotation enumConstant
193 assertTrue(foo.isAnnotationPresent(ExampleAnnotation.class)); in testGetField()
197 assertFalse(bar.isAnnotationPresent(ExampleAnnotation.class)); in testGetField()
/external/guava/guava-tests/test/com/google/common/base/
DEnumsTest.java180 private @interface ExampleAnnotation {} annotation in EnumsTest
183 @ExampleAnnotation enumConstant
193 assertTrue(foo.isAnnotationPresent(ExampleAnnotation.class)); in testGetField()
197 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.kt56 resolver.getSymbolsWithAnnotation(ExampleAnnotation::class.java.canonicalName) in <lambda>()