Home
last modified time | relevance | path

Searched refs:ComponentCreatorAnnotation (Results 1 – 17 of 17) sorted by relevance

/external/dagger2/java/dagger/internal/codegen/binding/
DComponentCreatorAnnotation.java37 public enum ComponentCreatorAnnotation { enum
53 ComponentCreatorAnnotation(Class<? extends Annotation> annotation) { in ComponentCreatorAnnotation() method in ComponentCreatorAnnotation
138 public static ImmutableSet<ComponentCreatorAnnotation> getCreatorAnnotations(TypeElement type) { in getCreatorAnnotations()
144 private static Stream<ComponentCreatorAnnotation> stream() { in stream()
145 return valuesOf(ComponentCreatorAnnotation.class); in stream()
148 private static Collector<ComponentCreatorAnnotation, ?, ImmutableSet<Class<? extends Annotation>>>
150 return mapping(ComponentCreatorAnnotation::annotation, toImmutableSet()); in toAnnotationClasses()
DComponentCreatorDescriptor.java24 import static dagger.internal.codegen.binding.ComponentCreatorAnnotation.getCreatorAnnotations;
56 public abstract ComponentCreatorAnnotation annotation(); in annotation()
199 ComponentCreatorAnnotation annotation = getOnlyElement(getCreatorAnnotations(typeElement)); in create()
DConfigurationAnnotations.java25 import static dagger.internal.codegen.binding.ComponentCreatorAnnotation.subcomponentCreatorAnnotat…
DErrorMessages.java60 ComponentCreatorAnnotation creatorAnnotation) { in creatorMessagesFor()
DComponentDescriptorFactory.java26 import static dagger.internal.codegen.binding.ComponentCreatorAnnotation.creatorAnnotationsFor;
/external/dagger2/javatests/dagger/internal/codegen/
DSubcomponentCreatorRequestFulfillmentTest.java26 import static dagger.internal.codegen.binding.ComponentCreatorAnnotation.SUBCOMPONENT_BUILDER;
27 import static dagger.internal.codegen.binding.ComponentCreatorAnnotation.SUBCOMPONENT_FACTORY;
32 import dagger.internal.codegen.binding.ComponentCreatorAnnotation;
54 CompilerMode compilerMode, ComponentCreatorAnnotation componentCreatorAnnotation) { in SubcomponentCreatorRequestFulfillmentTest()
DComponentCreatorTestHelper.java26 import dagger.internal.codegen.binding.ComponentCreatorAnnotation;
46 CompilerMode compilerMode, ComponentCreatorAnnotation componentCreatorAnnotation) { in ComponentCreatorTestHelper()
DSubcomponentCreatorValidationTest.java22 import static dagger.internal.codegen.binding.ComponentCreatorAnnotation.SUBCOMPONENT_BUILDER;
23 import static dagger.internal.codegen.binding.ComponentCreatorAnnotation.SUBCOMPONENT_FACTORY;
33 import dagger.internal.codegen.binding.ComponentCreatorAnnotation;
49 public SubcomponentCreatorValidationTest(ComponentCreatorAnnotation componentCreatorAnnotation) { in SubcomponentCreatorValidationTest()
DComponentCreatorTest.java28 import static dagger.internal.codegen.binding.ComponentCreatorAnnotation.COMPONENT_BUILDER;
29 import static dagger.internal.codegen.binding.ComponentCreatorAnnotation.COMPONENT_FACTORY;
38 import dagger.internal.codegen.binding.ComponentCreatorAnnotation;
67 ComponentCreatorAnnotation componentCreatorAnnotation, in ComponentCreatorTest()
DComponentFactoryTest.java22 import static dagger.internal.codegen.binding.ComponentCreatorAnnotation.COMPONENT_FACTORY;
DSubcomponentBuilderValidationTest.java21 import static dagger.internal.codegen.binding.ComponentCreatorAnnotation.SUBCOMPONENT_BUILDER;
DComponentBuilderTest.java22 import static dagger.internal.codegen.binding.ComponentCreatorAnnotation.COMPONENT_BUILDER;
/external/dagger2/java/dagger/internal/codegen/validation/
DComponentCreatorValidator.java22 import static dagger.internal.codegen.binding.ComponentCreatorAnnotation.getCreatorAnnotations;
34 import dagger.internal.codegen.binding.ComponentCreatorAnnotation;
81 ImmutableSet<ComponentCreatorAnnotation> creatorAnnotations = getCreatorAnnotations(type); in validateUncached()
95 ImmutableSet<ComponentCreatorAnnotation> creatorAnnotations, in validateOnlyOneCreatorAnnotation()
119 private final ComponentCreatorAnnotation annotation;
125 ComponentCreatorAnnotation annotation) { in ElementValidator()
DComponentValidator.java32 import static dagger.internal.codegen.binding.ComponentCreatorAnnotation.creatorAnnotationsFor;
33 import static dagger.internal.codegen.binding.ComponentCreatorAnnotation.productionCreatorAnnotatio…
34 import static dagger.internal.codegen.binding.ComponentCreatorAnnotation.subcomponentCreatorAnnotat…
DModuleValidator.java35 import static dagger.internal.codegen.binding.ComponentCreatorAnnotation.getCreatorAnnotations;
61 import dagger.internal.codegen.binding.ComponentCreatorAnnotation;
308 ComponentCreatorAnnotation creatorAnnotation = in moduleSubcomponentsIncludesCreator()
/external/dagger2/java/dagger/internal/codegen/
DComponentHjarProcessingStep.java22 import static dagger.internal.codegen.binding.ComponentCreatorAnnotation.rootComponentCreatorAnnota…
DComponentProcessingStep.java24 import static dagger.internal.codegen.binding.ComponentCreatorAnnotation.allCreatorAnnotations;