Searched refs:singletonType (Results 1 – 6 of 6) sorted by relevance
22 private final SingletonType singletonType; field in RequiresSingletons25 @Inject RequiresSingletons(SingletonType singletonType, in RequiresSingletons() argument27 this.singletonType = singletonType; in RequiresSingletons()31 SingletonType singletonType() { in singletonType() method in RequiresSingletons32 return singletonType; in singletonType()
56 assertThat(childComponent.requiresSingleton().singletonType()) in scopePropagatesUpward_class()57 .isSameInstanceAs(childComponent.requiresSingleton().singletonType()); in scopePropagatesUpward_class()58 assertThat(childComponent.requiresSingleton().singletonType()) in scopePropagatesUpward_class()60 childComponent.newGrandchildComponent().requiresSingleton().singletonType()); in scopePropagatesUpward_class()
22 @Inject UnscopedType(@SuppressWarnings("unused") SingletonType singletonType) {} in UnscopedType() argument
30 assertThat(childComponent.requiresSingleton().singletonType()) in scopePropagatesUpward_class()31 .isSameInstanceAs(childComponent.requiresSingleton().singletonType()) in scopePropagatesUpward_class()32 assertThat(childComponent.requiresSingleton().singletonType()) in scopePropagatesUpward_class()33 .isSameInstanceAs(childComponent.newGrandchildComponent().requiresSingleton().singletonType()) in scopePropagatesUpward_class()
24 private val singletonType: SingletonType, constant in dagger.functional.kotlinsrc.subcomponent.RequiresSingletons27 fun singletonType(): SingletonType = singletonType method in dagger.functional.kotlinsrc.subcomponent.RequiresSingletons
21 class UnscopedType @Inject constructor(@Suppress("UNUSED_PARAMETER") singletonType: SingletonType)