Home
last modified time | relevance | path

Searched refs:forRequiredVariable (Results 1 – 2 of 2) sorted by relevance

/external/dagger2/compiler/src/test/java/dagger/internal/codegen/
DDependencyRequestMapperTest.java80 return dependencyRequestFactory.forRequiredVariable(sampleProviderParameters().get(0)); in dependencyRequestForInstance()
84 return dependencyRequestFactory.forRequiredVariable(sampleProviderParameters().get(1)); in dependencyRequestForLazy()
88 return dependencyRequestFactory.forRequiredVariable(sampleProviderParameters().get(2)); in dependencyRequestForProvider()
92 return dependencyRequestFactory.forRequiredVariable(sampleProviderParameters().get(3)); in dependencyRequestForMembersInjector()
96 return dependencyRequestFactory.forRequiredVariable(sampleProducerParameters().get(0)); in dependencyRequestForProducer()
100 return dependencyRequestFactory.forRequiredVariable(sampleProducerParameters().get(1)); in dependencyRequestForProduced()
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/
DDependencyRequest.java159 return forRequiredVariable(input); in forRequiredVariables()
185 DependencyRequest forRequiredVariable(VariableElement variableElement) { in forRequiredVariable() method
186 return forRequiredVariable(variableElement, Optional.<String>absent()); in forRequiredVariable()
189 DependencyRequest forRequiredVariable(VariableElement variableElement, Optional<String> name) { in forRequiredVariable() method
295 return forRequiredVariable(constructor.getParameters().get(0), Optional.of("monitor")); in forProductionComponentMonitorProvider()