Home
last modified time | relevance | path

Searched refs:DEFINE_COMPONENT (Results 1 – 6 of 6) sorted by relevance

/external/dagger2/java/dagger/hilt/processor/internal/definecomponent/
DDefineComponentMetadatas.java80 Processors.hasAnnotation(element, ClassNames.DEFINE_COMPONENT), in getUncached()
140 Processors.getAnnotationMirror(component, ClassNames.DEFINE_COMPONENT); in getUncached()
155 || Processors.hasAnnotation(parent, ClassNames.DEFINE_COMPONENT), in getUncached()
DDefineComponentProcessor.java53 ClassNames.DEFINE_COMPONENT.toString(), ClassNames.DEFINE_COMPONENT_BUILDER.toString()); in getSupportedAnnotationTypes()
58 if (ClassName.get(annotation).equals(ClassNames.DEFINE_COMPONENT)) { in processEach()
DDefineComponentBuilderMetadatas.java124 MoreTypes.asTypeElement(component), ClassNames.DEFINE_COMPONENT), in getUncached()
DDefineComponents.java109 ClassNames.DEFINE_COMPONENT, in getComponentTree()
/external/dagger2/java/dagger/hilt/processor/internal/
DComponents.java109 .filter(component -> !Processors.hasAnnotation(component, ClassNames.DEFINE_COMPONENT)) in getHiltInstallInComponents()
DClassNames.java38 public static final ClassName DEFINE_COMPONENT = get("dagger.hilt", "DefineComponent"); field in ClassNames