/external/doclava/doclet_adapter/src/test/java/com/google/doclava/javadoc/ |
D | PackageDocImplTest.java | 102 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/ |
D | BasicAnnotationProcessor.java | 217 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/ |
D | PackageDocImpl.java | 61 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/ |
D | Annotations.java | 248 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/ |
D | Moshi.java | 93 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/ |
D | TestParametersMethodProcessorTest.java | 309 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
|
D | TestParameterTest.java | 244 private static ImmutableList<Class<? extends Annotation>> annotationTypes( in annotationTypes() method in TestParameterTest
|
/external/doclava/doclet_adapter/src/main/java/com/sun/javadoc/ |
D | PackageDoc.java | 122 AnnotationTypeDoc[] annotationTypes(); in annotationTypes() method
|
/external/doclava/src/com/google/doclava/ |
D | PackageInfo.java | 230 Converter.convertClasses(mPackage.annotationTypes()))); in annotations()
|
/external/TestParameterInjector/junit4/src/main/java/com/google/testing/junit/testparameterinjector/ |
D | TestParameterAnnotationMethodProcessor.java | 827 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/ |
D | TestParameterAnnotationMethodProcessor.java | 827 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/ |
D | TestParameterAnnotationMethodProcessor.java | 734 ImmutableList<AnnotationTypeOrigin> annotationTypes = in getAnnotationValuesForUsedAnnotationTypes() local 746 return removeOverrides(annotationTypes, testClass, method).stream() in getAnnotationValuesForUsedAnnotationTypes()
|
/external/dokka/core/src/main/kotlin/javadoc/ |
D | docbase.kt | 99 override fun annotationTypes(): Array<out AnnotationTypeDoc> = emptyArray() in annotationTypes() method
|