Lines Matching full:provides
52 "import dagger.Provides;", in nullCheckForConstructorParameters()
57 " @Nullable @Provides String provideString() { return null; }", in nullCheckForConstructorParameters()
74 "@Nullable @Provides String TestModule.provideString()")); in nullCheckForConstructorParameters()
96 "import dagger.Provides;", in nullCheckForMembersInjectParam()
101 " @Nullable @Provides String provideString() { return null; }", in nullCheckForMembersInjectParam()
118 "@Nullable @Provides String TestModule.provideString()")); in nullCheckForMembersInjectParam()
140 "import dagger.Provides;", in nullCheckForVariable()
145 " @Nullable @Provides String provideString() { return null; }", in nullCheckForVariable()
162 "@Nullable @Provides String TestModule.provideString()")); in nullCheckForVariable()
175 "import dagger.Provides;", in nullCheckForComponentReturn()
180 " @Nullable @Provides String provideString() { return null; }", in nullCheckForComponentReturn()
197 "@Nullable @Provides String TestModule.provideString()")); in nullCheckForComponentReturn()
225 "import dagger.Provides;", in nullCheckForOptionalInstance()
230 " @Nullable @Provides static String provideString() { return null; }", in nullCheckForOptionalInstance()
250 "@Nullable @Provides String TestModule.provideString()")); in nullCheckForOptionalInstance()
273 "import dagger.Provides;", in nullCheckForOptionalProvider()
278 " @Nullable @Provides static String provideString() { return null; }", in nullCheckForOptionalProvider()
316 "import dagger.Provides;", in nullCheckForOptionalLazy()
321 " @Nullable @Provides static String provideString() { return null; }", in nullCheckForOptionalLazy()
360 "import dagger.Provides;", in nullCheckForOptionalProviderOfLazy()
365 " @Nullable @Provides static String provideString() { return null; }", in nullCheckForOptionalProviderOfLazy()
392 "import dagger.Provides;", in moduleValidation()
396 " @Provides @Nullable static String nullableString() { return null; }", in moduleValidation()
408 "@Provides @Nullable String TestModule.nullableString()")); in moduleValidation()