Home
last modified time | relevance | path

Searched refs:getScoping (Results 1 – 13 of 13) sorted by relevance

/external/guice/core/src/com/google/inject/internal/
DLinkedBindingImpl.java73 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()
DUntargettedBindingImpl.java59 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()
DProviderInstanceBindingImpl.java104 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()
DLinkedProviderBindingImpl.java110 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()
DInstanceBindingImpl.java84 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()
DConstructorBindingImpl.java237 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()
DBindingBuilder.java77 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()
DInjectorImpl.java419 && 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);
DBindingImpl.java85 public Scoping getScoping() { in getScoping() method in BindingImpl
DAbstractBindingBuilder.java127 if (binding.getScoping().isExplicitlyScoped()) { in checkNotScoped()
DConstantBindingBuilderImpl.java139 base.getScoping(), in toConstant()
DAbstractBindingProcessor.java147 scoping = binding.getScoping(); in Processor()
DInternalInjectorCreator.java225 if (binding.getScoping().isEagerSingleton(stage)) { in isEagerSingleton()