Home
last modified time | relevance | path

Searched refs:anyComponentAnnotation (Results 1 – 3 of 3) sorted by relevance

/external/dagger2/java/dagger/internal/codegen/base/
DComponentAnnotation.java136 return anyComponentAnnotation(typeElement, ROOT_COMPONENT_ANNOTATIONS); in rootComponentAnnotation()
144 return anyComponentAnnotation(typeElement, SUBCOMPONENT_ANNOTATIONS); in subcomponentAnnotation()
151 public static Optional<ComponentAnnotation> anyComponentAnnotation(TypeElement typeElement) { in anyComponentAnnotation() method in ComponentAnnotation
152 return anyComponentAnnotation(typeElement, ALL_COMPONENT_ANNOTATIONS); in anyComponentAnnotation()
155 private static Optional<ComponentAnnotation> anyComponentAnnotation( in anyComponentAnnotation() method in ComponentAnnotation
/external/dagger2/java/dagger/internal/codegen/validation/
DBindsInstanceMethodValidator.java20 import static dagger.internal.codegen.base.ComponentAnnotation.anyComponentAnnotation;
63 anyComponentAnnotation(enclosingType) in checkAdditionalProperties()
DComponentValidator.java29 import static dagger.internal.codegen.base.ComponentAnnotation.anyComponentAnnotation;
165 return anyComponentAnnotation(component).get(); in componentAnnotation()