Home
last modified time | relevance | path

Searched refs:DEFINE_COMPONENT (Results 1 – 8 of 8) 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.java51 ClassNames.DEFINE_COMPONENT.toString(), ClassNames.DEFINE_COMPONENT_BUILDER.toString()); in getSupportedAnnotationTypes()
56 if (ClassName.get(annotation).equals(ClassNames.DEFINE_COMPONENT)) { in processEach()
DDefineComponentBuilderMetadatas.java124 MoreTypes.asTypeElement(component), ClassNames.DEFINE_COMPONENT), in getUncached()
DDefineComponents.java108 ClassNames.DEFINE_COMPONENT, in getComponentDescriptors()
/external/dagger2/java/dagger/hilt/android/plugin/src/main/kotlin/dagger/hilt/android/plugin/root/
DAggregatedAnnotation.kt32 DEFINE_COMPONENT(
DAggregator.kt171 AggregatedAnnotation.DEFINE_COMPONENT -> { in <lambda>()
/external/dagger2/java/dagger/hilt/processor/internal/
DComponents.java109 .filter(component -> !Processors.hasAnnotation(component, ClassNames.DEFINE_COMPONENT)) in getHiltInstallInComponents()
DClassNames.java67 public static final ClassName DEFINE_COMPONENT = get("dagger.hilt", "DefineComponent"); field in ClassNames