Home
last modified time | relevance | path

Searched refs:annotationTypes (Results 1 – 13 of 13) sorted by relevance

/external/doclava/doclet_adapter/src/test/java/com/google/doclava/javadoc/
DPackageDocImplTest.java102 public void annotationTypes() { in annotationTypes() method in PackageDocImplTest
103 ClassDoc[] annotationTypes = comExamplePackages.annotationTypes(); in annotationTypes() local
105 assertEquals(1, annotationTypes.length); in annotationTypes()
106 assertTrue(annotationTypes[0].isAnnotationType()); in annotationTypes()
107 assertEquals("Annotation", annotationTypes[0].name()); in annotationTypes()
/external/auto/common/src/main/java/com/google/auto/common/
DBasicAnnotationProcessor.java217 ImmutableSet<TypeElement> annotationTypes = getSupportedAnnotationTypeElements(step); in process() local
220 .putAll(indexByAnnotation(elementsDeferredBySteps.get(step), annotationTypes)) in process()
221 .putAll(filterKeys(validElements, Predicates.in(annotationTypes))) in process()
311 Set<ElementName> annotatedElements, ImmutableSet<TypeElement> annotationTypes) { in indexByAnnotation() argument
317 findAnnotatedElements(element.get(), annotationTypes, deferredElements); in indexByAnnotation() local
343 ImmutableSet<TypeElement> annotationTypes, in findAnnotatedElements() argument
347 findAnnotatedElements(enclosedElement, annotationTypes, annotatedElements); in findAnnotatedElements()
356 findAnnotatedElements(parameterElement, annotationTypes, annotatedElements); in findAnnotatedElements()
361 for (TypeElement annotationType : annotationTypes) { in findAnnotatedElements()
/external/doclava/doclet_adapter/src/main/java/com/google/doclava/javadoc/
DPackageDocImpl.java61 private AnnotationTypeDoc[] annotationTypes; field in PackageDocImpl
178 public AnnotationTypeDoc[] annotationTypes() { in annotationTypes() method in PackageDocImpl
179 if (annotationTypes == null) { in annotationTypes()
180 annotationTypes = filterEnclosedElements( in annotationTypes()
185 return annotationTypes; in annotationTypes()
/external/guice/core/src/com/google/inject/internal/
DAnnotations.java248 private final Collection<Class<? extends Annotation>> annotationTypes;
256 if (annotationTypes.contains(annotation.annotationType())) {
268 AnnotationChecker(Collection<Class<? extends Annotation>> annotationTypes) {
269 this.annotationTypes = annotationTypes;
/external/moshi/moshi/src/main/java/com/squareup/moshi/
DMoshi.java93 public <T> JsonAdapter<T> adapter(Type type, Class<? extends Annotation>... annotationTypes) { in adapter() argument
94 if (annotationTypes.length == 1) { in adapter()
95 return adapter(type, annotationTypes[0]); in adapter()
97 Set<Annotation> annotations = new LinkedHashSet<>(annotationTypes.length); in adapter()
98 for (Class<? extends Annotation> annotationType : annotationTypes) { in adapter()
/external/TestParameterInjector/junit4/src/test/java/com/google/testing/junit/testparameterinjector/
DTestParametersMethodProcessorTest.java309 assertThat(annotationTypes(context.annotationsOnParameter())) in ProviderWithContext()
327 assertThat(annotationTypes(context.annotationsOnParameter())) in testWithoutOtherAnnotations()
344 assertThat(annotationTypes(context.annotationsOnParameter())) in testWithOtherAnnotations()
670 private static ImmutableList<Class<? extends Annotation>> annotationTypes( in annotationTypes() method in TestParametersMethodProcessorTest
DTestParameterTest.java244 private static ImmutableList<Class<? extends Annotation>> annotationTypes( in annotationTypes() method in TestParameterTest
/external/doclava/doclet_adapter/src/main/java/com/sun/javadoc/
DPackageDoc.java122 AnnotationTypeDoc[] annotationTypes(); in annotationTypes() method
/external/doclava/src/com/google/doclava/
DPackageInfo.java230 Converter.convertClasses(mPackage.annotationTypes()))); in annotations()
/external/TestParameterInjector/junit4/src/main/java/com/google/testing/junit/testparameterinjector/
DTestParameterAnnotationMethodProcessor.java827 ImmutableList<AnnotationTypeOrigin> annotationTypes = in getAnnotationValuesForUsedAnnotationTypes() local
839 return FluentIterable.from(removeOverrides(annotationTypes, testClass, method)) in getAnnotationValuesForUsedAnnotationTypes()
/external/TestParameterInjector/junit5/src/main/java/com/google/testing/junit/testparameterinjector/junit5/
DTestParameterAnnotationMethodProcessor.java827 ImmutableList<AnnotationTypeOrigin> annotationTypes = in getAnnotationValuesForUsedAnnotationTypes() local
839 return FluentIterable.from(removeOverrides(annotationTypes, testClass, method)) in getAnnotationValuesForUsedAnnotationTypes()
/external/TestParameterInjector/src/main/java/com/google/testing/junit/testparameterinjector/
DTestParameterAnnotationMethodProcessor.java734 ImmutableList<AnnotationTypeOrigin> annotationTypes = in getAnnotationValuesForUsedAnnotationTypes() local
746 return removeOverrides(annotationTypes, testClass, method).stream() in getAnnotationValuesForUsedAnnotationTypes()
/external/dokka/core/src/main/kotlin/javadoc/
Ddocbase.kt99 override fun annotationTypes(): Array<out AnnotationTypeDoc> = emptyArray() in annotationTypes() method