Home
last modified time | relevance | path

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

/external/dagger2/java/dagger/internal/codegen/binding/
DBindingFactory.java442 DelegateDeclaration delegateDeclaration, ContributionBinding actualBinding) { in delegateBinding() argument
447 delegateDeclaration, in delegateBinding()
453 .scope(uniqueScopeOf(delegateDeclaration.bindingElement().get())) in delegateBinding()
455 delegateDeclaration, in delegateBinding()
467 public ContributionBinding unresolvedDelegateBinding(DelegateDeclaration delegateDeclaration) { in unresolvedDelegateBinding() argument
469 ProvisionBinding.builder().scope(uniqueScopeOf(delegateDeclaration.bindingElement().get())), in unresolvedDelegateBinding()
470 delegateDeclaration, in unresolvedDelegateBinding()
476 DelegateDeclaration delegateDeclaration, in buildDelegateBinding() argument
479 metadataUtil.isObjectClass(delegateDeclaration.contributingModule().get()) in buildDelegateBinding()
480 || metadataUtil.isCompanionObjectClass(delegateDeclaration.contributingModule().get()); in buildDelegateBinding()
[all …]
DBindingGraphFactory.java527 for (DelegateDeclaration delegateDeclaration : delegateDeclarations) { in createDelegateBindings()
528 builder.add(createDelegateBinding(delegateDeclaration)); in createDelegateBindings()
538 private ContributionBinding createDelegateBinding(DelegateDeclaration delegateDeclaration) { in createDelegateBinding() argument
539 Key delegateKey = delegateDeclaration.delegateRequest().key(); in createDelegateBinding()
541 return bindingFactory.unresolvedDelegateBinding(delegateDeclaration); in createDelegateBinding()
561 return bindingFactory.unresolvedDelegateBinding(delegateDeclaration); in createDelegateBinding()
567 return bindingFactory.delegateBinding(delegateDeclaration, explicitDelegate); in createDelegateBinding()
DKeyFactory.java238 Key forDelegateBinding(DelegateDeclaration delegateDeclaration, Class<?> frameworkType) { in forDelegateBinding() argument
239 return delegateDeclaration.contributionType().equals(ContributionType.MAP) in forDelegateBinding()
240 ? wrapMapValue(delegateDeclaration.key(), frameworkType) in forDelegateBinding()
241 : delegateDeclaration.key(); in forDelegateBinding()