Home
last modified time | relevance | path

Searched refs:membersInjectionMethod (Results 1 – 3 of 3) sorted by relevance

/external/dagger2/java/dagger/internal/codegen/
DDependencyRequestFactory.java174 ExecutableElement membersInjectionMethod, ExecutableType membersInjectionMethodType) { in forComponentMembersInjectionMethod() argument
175 checkNotNull(membersInjectionMethod); in forComponentMembersInjectionMethod()
178 InjectionAnnotations.getQualifier(membersInjectionMethod); in forComponentMembersInjectionMethod()
184 .requestElement(membersInjectionMethod) in forComponentMembersInjectionMethod()
DSimpleMethodBindingExpression.java170 MethodSpec membersInjectionMethod = membersInjectionMethods.getOrCreate(provisionBinding.key()); in injectMembers() local
172 membersInjectionMethod.returnType.equals(TypeName.OBJECT) in injectMembers()
175 return Expression.create(returnType, CodeBlock.of("$N($L)", membersInjectionMethod, instance)); in injectMembers()
DMembersInjectionMethods.java70 return reentrantComputeIfAbsent(membersInjectionMethods, key, this::membersInjectionMethod); in getOrCreate()
73 private MethodSpec membersInjectionMethod(Key key) { in membersInjectionMethod() method in MembersInjectionMethods