Searched refs:MEMBERS_INJECTION (Results 1 – 12 of 12) sorted by relevance
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/ |
D | ResolvedBindings.java | 74 case MEMBERS_INJECTION: in bindings() 90 case MEMBERS_INJECTION: in ownedBindings() 127 checkState(bindingKey().kind().equals(BindingKey.Kind.MEMBERS_INJECTION)); in membersInjectionBinding() 142 checkState(bindingKey().kind().equals(BindingKey.Kind.MEMBERS_INJECTION)); in ownedMembersInjectionBinding() 183 checkArgument(bindingKey.kind().equals(BindingKey.Kind.MEMBERS_INJECTION)); in forMembersInjectionBinding()
|
D | Binding.java | 63 MEMBERS_INJECTION(MembersInjector.class), enumConstant 83 case MEMBERS_INJECTION: in bindingKeyKind() 84 return BindingKey.Kind.MEMBERS_INJECTION; in bindingKeyKind()
|
D | BindingKey.java | 31 CONTRIBUTION, MEMBERS_INJECTION; enumConstant
|
D | FrameworkField.java | 112 case MEMBERS_INJECTION: in createForResolvedBindings() 154 case MEMBERS_INJECTION: in frameworkClassForResolvedBindings()
|
D | SourceFiles.java | 214 case MEMBERS_INJECTION: in generatedClassNameForBinding() 263 case MEMBERS_INJECTION: in bindingTypeParameters()
|
D | ComponentDescriptor.java | 224 MEMBERS_INJECTION, 376 ComponentMethodKind.MEMBERS_INJECTION, 422 ComponentMethodKind.MEMBERS_INJECTION,
|
D | BindingGraphValidator.java | 289 if (any(contributionBindings, Binding.Type.MEMBERS_INJECTION)) { in validateResolvedBinding() 325 case MEMBERS_INJECTION: in validateResolvedBinding() 326 if (!all(resolvedBinding.bindings(), Binding.Type.MEMBERS_INJECTION)) { in validateResolvedBinding()
|
D | DependencyRequest.java | 104 return BindingKey.create(BindingKey.Kind.MEMBERS_INJECTION, key()); in bindingKey()
|
D | MembersInjectionBinding.java | 94 return Binding.Type.MEMBERS_INJECTION; in bindingType()
|
D | AbstractComponentWriter.java | 562 case MEMBERS_INJECTION: in staticMemberSelect() 735 case MEMBERS_INJECTION: in initializeFrameworkType()
|
D | BindingGraph.java | 385 case MEMBERS_INJECTION:
|
/external/dagger2/compiler/src/test/java/dagger/internal/codegen/ |
D | BindingFieldTest.java | 73 BindingKey.create(BindingKey.Kind.MEMBERS_INJECTION, key), "test") in frameworkType()
|