/external/guice/core/src/com/google/inject/internal/ |
D | LinkedBindingImpl.java | 73 return new LinkedBindingImpl<T>(getSource(), key, getScoping(), targetKey); in withKey() 78 getScoping().applyTo(binder.withSource(getSource()).bind(getKey()).to(getLinkedKey())); in applyTo() 86 .add("scope", getScoping()) in toString() 96 && getScoping().equals(o.getScoping()) in equals() 105 return Objects.hashCode(getKey(), getScoping(), targetKey); in hashCode()
|
D | UntargettedBindingImpl.java | 59 return new UntargettedBindingImpl<T>(getSource(), key, getScoping()); in withKey() 64 getScoping().applyTo(binder.withSource(getSource()).bind(getKey())); in applyTo() 79 return getKey().equals(o.getKey()) && getScoping().equals(o.getScoping()); in equals() 87 return Objects.hashCode(getKey(), getScoping()); in hashCode()
|
D | ProviderInstanceBindingImpl.java | 104 getSource(), key, getScoping(), injectionPoints, providerInstance); in withKey() 109 getScoping() in applyTo() 119 .add("scope", getScoping()) in toString() 129 && getScoping().equals(o.getScoping()) in equals() 138 return Objects.hashCode(getKey(), getScoping()); in hashCode()
|
D | LinkedProviderBindingImpl.java | 110 return new LinkedProviderBindingImpl<T>(getSource(), key, getScoping(), providerKey); in withKey() 115 getScoping() in applyTo() 124 .add("scope", getScoping()) in toString() 134 && getScoping().equals(o.getScoping()) in equals() 143 return Objects.hashCode(getKey(), getScoping(), providerKey); in hashCode()
|
D | InstanceBindingImpl.java | 84 return new InstanceBindingImpl<T>(getSource(), key, getScoping(), injectionPoints, instance); in withKey() 107 && getScoping().equals(o.getScoping()) in equals() 116 return Objects.hashCode(getKey(), getScoping()); in hashCode()
|
D | ConstructorBindingImpl.java | 237 null, key, getSource(), factory, getScoping(), factory, constructorInjectionPoint); in withKey() 244 getScoping() in applyTo() 259 .add("scope", getScoping()) in toString() 268 && getScoping().equals(o.getScoping()) in equals() 277 return Objects.hashCode(getKey(), getScoping(), constructorInjectionPoint); in hashCode()
|
D | BindingBuilder.java | 77 new LinkedBindingImpl<T>(base.getSource(), base.getKey(), base.getScoping(), linkedKey)); in to() 127 base.getSource(), base.getKey(), base.getScoping(), injectionPoints, provider)); in toProvider() 152 base.getSource(), base.getKey(), base.getScoping(), providerKey)); in toProvider() 184 base.getScoping(), in toConstructor()
|
D | InjectorImpl.java | 419 && getScoping().equals(o.getScoping()) in equals() 428 return Objects.hashCode(getKey(), getScoping(), providedBinding); in hashCode() 566 && getScoping().equals(o.getScoping()) 575 return Objects.hashCode(getKey(), getScoping(), value);
|
D | BindingImpl.java | 85 public Scoping getScoping() { in getScoping() method in BindingImpl
|
D | AbstractBindingBuilder.java | 127 if (binding.getScoping().isExplicitlyScoped()) { in checkNotScoped()
|
D | ConstantBindingBuilderImpl.java | 139 base.getScoping(), in toConstant()
|
D | AbstractBindingProcessor.java | 147 scoping = binding.getScoping(); in Processor()
|
D | InternalInjectorCreator.java | 225 if (binding.getScoping().isEagerSingleton(stage)) { in isEagerSingleton()
|