Searched refs:subcomponentAnnotation (Results 1 – 6 of 6) sorted by relevance
273 Optional<AnnotationMirror> subcomponentAnnotation = subcomponentAnnotation(); in validateMethod() local274 if (subcomponentAnnotation.isPresent()) { in validateMethod()275 validateSubcomponentFactoryMethod(subcomponentAnnotation.get()); in validateMethod()300 private Optional<AnnotationMirror> subcomponentAnnotation() { in subcomponentAnnotation() method in ComponentValidator.ElementValidator.ComponentMethodValidator316 private void validateSubcomponentFactoryMethod(AnnotationMirror subcomponentAnnotation) { in validateSubcomponentFactoryMethod() argument322 ComponentAnnotation.componentAnnotation(subcomponentAnnotation).modules(); in validateSubcomponentFactoryMethod()
29 import static dagger.internal.codegen.base.ComponentAnnotation.subcomponentAnnotation;313 subcomponentAnnotation(subcomponentType).get().simpleName(), in moduleSubcomponentsIncludesCreator()337 subcomponentAnnotation(subcomponent).get().simpleName(), in moduleSubcomponentsDoesntHaveCreator()
171 AnnotationSpec.Builder subcomponentAnnotation = AnnotationSpec.builder(Subcomponent.class); in subcomponent() local173 subcomponentAnnotation.addMember("modules", "$T.class", module); in subcomponent()178 .addAnnotation(subcomponentAnnotation.build()) in subcomponent()
23 import static dagger.internal.codegen.base.ComponentAnnotation.subcomponentAnnotation;92 ComponentAnnotation::subcomponentAnnotation, in subcomponentDescriptor()229 if (subcomponentAnnotation(returnTypeElement).isPresent()) { in getDescriptorForComponentMethod()
22 import static dagger.internal.codegen.base.ComponentAnnotation.subcomponentAnnotation;59 checkArgument(subcomponentAnnotation(subcomponent).isPresent()); in getSubcomponentCreator()
143 public static Optional<ComponentAnnotation> subcomponentAnnotation(TypeElement typeElement) { in subcomponentAnnotation() method in ComponentAnnotation