Home
last modified time | relevance | path

Searched refs:Dependency (Results 1 – 25 of 156) sorted by relevance

1234567

/external/xmlrpcpp/
Dxmlrpc.dsw14 Begin Project Dependency
16 End Project Dependency
29 Begin Project Dependency
31 End Project Dependency
44 Begin Project Dependency
46 End Project Dependency
59 Begin Project Dependency
61 End Project Dependency
74 Begin Project Dependency
76 End Project Dependency
[all …]
/external/guice/core/test/com/google/inject/spi/
DHasDependenciesTest.java48 assertEquals(ImmutableSet.<Dependency<?>>of(Dependency.get(Key.get(Integer.class))), in testInstanceWithDependencies()
60 Dependency<?> onlyDependency = Iterables.getOnlyElement(binding.getDependencies()); in testInstanceWithoutDependencies()
72 Dependency<?> onlyDependency = Iterables.getOnlyElement(binding.getDependencies()); in testProvider()
89 public Set<Dependency<?>> getDependencies() { in getDependencies()
90 return ImmutableSet.<Dependency<?>>of(Dependency.get(Key.get(Integer.class))); in getDependencies()
96 public Set<Dependency<?>> getDependencies() { in getDependencies()
97 return ImmutableSet.<Dependency<?>>of(Dependency.get(Key.get(Integer.class))); in getDependencies()
/external/guice/core/src/com/google/inject/spi/
DDependency.java40 public final class Dependency<T> { class
46 Dependency(InjectionPoint injectionPoint, Key<T> key, boolean nullable, int parameterIndex) { in Dependency() method in Dependency
57 public static <T> Dependency<T> get(Key<T> key) { in get()
58 return new Dependency<T>(null, MoreTypes.canonicalizeKey(key), true, -1); in get()
64 public static Set<Dependency<?>> forInjectionPoints(Set<InjectionPoint> injectionPoints) { in forInjectionPoints()
65 List<Dependency<?>> dependencies = Lists.newArrayList(); in forInjectionPoints()
108 if (o instanceof Dependency) { in equals()
109 Dependency dependency = (Dependency) o; in equals()
DProviderLookup.java42 private final Dependency<T> dependency;
46 this(source, Dependency.get(checkNotNull(key, "key"))); in ProviderLookup()
50 public ProviderLookup(Object source, Dependency<T> dependency) { in ProviderLookup()
64 public Dependency<T> getDependency() { in getDependency()
107 public Set<Dependency<?>> getDependencies() { in getProvider()
111 return ImmutableSet.<Dependency<?>>of(Dependency.get(providerKey)); in getProvider()
DDependencyAndSource.java34 private final Dependency<?> dependency;
37 public DependencyAndSource(Dependency<?> dependency, Object source) { in DependencyAndSource()
50 public Dependency<?> getDependency() { in getDependency()
71 Dependency<?> dep = getDependency(); in toString()
/external/guice/core/src/com/google/inject/internal/
DInternalContext.java24 import com.google.inject.spi.Dependency;
44 private Dependency<?> dependency;
68 public Dependency<?> getDependency() { in getDependency()
73 public Dependency<?> pushDependency(Dependency<?> dependency, Object source) { in pushDependency()
74 Dependency<?> previous = this.dependency; in pushDependency()
81 public void popStateAndSetDependency(Dependency<?> newDependency) { in popStateAndSetDependency()
101 Dependency<?> dependency; in getDependencyChain()
103 dependency = Dependency.get((Key<?>) evenEntry); in getDependencyChain()
105 dependency = (Dependency<?>) evenEntry; in getDependencyChain()
DSingleParameterInjector.java19 import com.google.inject.spi.Dependency;
27 private final Dependency<T> dependency;
30 SingleParameterInjector(Dependency<T> dependency, BindingImpl<? extends T> binding) { in SingleParameterInjector()
36 Dependency previous = context.pushDependency(dependency, binding.getSource()); in inject()
DExposedBindingImpl.java25 import com.google.inject.spi.Dependency;
45 public Set<Dependency<?>> getDependencies() { in getDependencies()
46 return ImmutableSet.<Dependency<?>>of(Dependency.get(Key.get(Injector.class))); in getDependencies()
DLinkedBindingImpl.java24 import com.google.inject.spi.Dependency;
54 public Set<Dependency<?>> getDependencies() { in getDependencies()
55 return ImmutableSet.<Dependency<?>>of(Dependency.get(targetKey)); in getDependencies()
DProviderMethod.java31 import com.google.inject.spi.Dependency;
62 ImmutableSet<Dependency<?>> dependencies, List<Provider<?>> parameterProviders, in create()
101 private final ImmutableSet<Dependency<?>> dependencies;
110 ImmutableSet<Dependency<?>> dependencies, List<Provider<?>> parameterProviders, in ProviderMethod()
186 public Set<Dependency<?>> getDependencies() { in getDependencies()
244 ImmutableSet<Dependency<?>> dependencies, in FastClassProviderMethod()
284 ImmutableSet<Dependency<?>> dependencies, in ReflectionProviderMethod()
DInternalFactoryToInitializableAdapter.java21 import com.google.inject.spi.Dependency;
43 public T get(Errors errors, InternalContext context, Dependency<?> dependency, boolean linked) in get()
51 Dependency<?> dependency, ConstructionContext<T> constructionContext) throws ErrorsException { in provision()
DSingleFieldInjector.java20 import com.google.inject.spi.Dependency;
31 final Dependency<?> dependency;
52 Dependency previous = context.pushDependency(dependency, binding.getSource()); in inject()
DProviderInternalFactory.java23 import com.google.inject.spi.Dependency;
42 InternalContext context, final Dependency<?> dependency, in circularGet()
79 protected T provision(Provider<? extends T> provider, Errors errors, Dependency<?> dependency,
/external/tinyxml/
Dtinyxml.dsw14 Begin Project Dependency
16 End Project Dependency
29 Begin Project Dependency
31 End Project Dependency
/external/guice/core/src/com/google/inject/util/
DProviders.java27 import com.google.inject.spi.Dependency;
102 Set<Dependency<?>> mutableDeps = Sets.newHashSet(); in guicify()
106 final Set<Dependency<?>> dependencies = ImmutableSet.copyOf(mutableDeps); in guicify()
138 private final Set<Dependency<?>> dependencies;
140 private GuicifiedProviderWithDependencies(Set<Dependency<?>> dependencies, in GuicifiedProviderWithDependencies()
152 public Set<Dependency<?>> getDependencies() { in getDependencies()
/external/libgdx/extensions/gdx-setup/src/com/badlogic/gdx/setup/
DDependency.java25 public class Dependency { class
31 public Dependency (String name, String[] gwtInherits, String[]... subDependencies) { in Dependency() method in Dependency
62 if (obj instanceof Dependency) { in equals()
63 if (((Dependency)obj).getName().equals(getName())) { in equals()
DProjectBuilder.java32 List<Dependency> dependencies = new ArrayList<Dependency>();
40 public List<String> buildProject(List<ProjectType> projects, List<Dependency> dependencies) { in buildProject()
42 for (Dependency dep : dependencies) { in buildProject()
DDependencyBank.java53 …HashMap<ProjectDependency, Dependency> gdxDependencies = new HashMap<ProjectDependency, Dependency
57 Dependency dependency = new Dependency(projectDep.name(), in DependencyBank()
69 public Dependency getDependency(ProjectDependency gdx) { in getDependency()
DExternalExtension.java42 public Dependency generateDependency () { in generateDependency()
43Dependency dep = new Dependency(name, gwtInherits, getPlatformDependencies("core"), getPlatformDep… in generateDependency()
/external/guice/extensions/multibindings/src/com/google/inject/multibindings/
DOptionalBinder.java38 import com.google.inject.spi.Dependency;
317 private Set<Dependency<?>> dependencies;
319 private Set<Dependency<?>> providerDependencies;
334 this.dependencies = ImmutableSet.<Dependency<?>>of(Dependency.get(Key.get(Injector.class))); in RealOptionalBinder()
336 ImmutableSet.<Dependency<?>>of(Dependency.get(Key.get(Injector.class))); in RealOptionalBinder()
428 @Override public Set<Dependency<?>> getDependencies() { in getDependencies()
482 @Override public Set<Dependency<?>> getDependencies() { in getDependencies()
503 @Override public Set<Dependency<?>> getDependencies() { in getDependencies()
541 ImmutableSet.<Dependency<?>>of(Dependency.get(binding.getKey())); in initialize()
543 ImmutableSet.<Dependency<?>>of(Dependency.get(providerOf(binding.getKey()))); in initialize()
[all …]
DMultibinder.java44 import com.google.inject.spi.Dependency;
274 private Set<Dependency<?>> dependencies;
327 List<Dependency<?>> dependencies = Lists.newArrayList(); in initialize()
334 dependencies.add(Dependency.get(binding.getKey())); in initialize()
441 public Set<Dependency<?>> getDependencies() { in getDependencies()
443 return ImmutableSet.<Dependency<?>>of(Dependency.get(Key.get(Injector.class))); in getDependencies()
475 @Override public Set<Dependency<?>> getDependencies() { in getDependencies()
477 return ImmutableSet.<Dependency<?>>of(Dependency.get(Key.get(Injector.class))); in getDependencies()
479 ImmutableSet.Builder<Dependency<?>> setBuilder = ImmutableSet.builder(); in getDependencies()
480 for (Dependency<?> dependency : dependencies) { in getDependencies()
[all …]
DMapBinder.java51 import com.google.inject.spi.Dependency;
380 ImmutableSet<Dependency<?>> dependencies in configure()
381 = ImmutableSet.<Dependency<?>>of(Dependency.get(entrySetBinder.getSetKey())); in configure()
448 private final ImmutableSet<Dependency<?>> dependencies;
453 ImmutableSet<Dependency<?>> dependencies, in RealProviderMapProvider()
526 @Override public Set<Dependency<?>> getDependencies() { in getDependencies()
532 private final ImmutableSet<Dependency<?>> dependencies;
536 ImmutableSet<Dependency<?>> dependencies, in RealMapProvider()
562 @Override public Set<Dependency<?>> getDependencies() { in getDependencies()
633 ImmutableSet<Dependency<?>> dependencies in configure()
[all …]
/external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
DFactoryProvider2.java50 import com.google.inject.spi.Dependency;
129 final Set<Dependency<?>> dependencies;
142 Set<Dependency<?>> dependencies, in AssistData()
169 public Set<Dependency<?>> getDependencies() { in getDependencies()
295 Set<Dependency<?>> deps = getDependencies(ctorInjectionPoint, implementation); in FactoryProvider2()
398 public Set<Dependency<?>> getDependencies() { in getDependencies()
399 Set<Dependency<?>> combinedDeps = new HashSet<Dependency<?>>(); in getDependencies()
568 …private Set<Dependency<?>> getDependencies(InjectionPoint ctorPoint, TypeLiteral<?> implementation… in getDependencies()
569 ImmutableSet.Builder<Dependency<?>> builder = ImmutableSet.builder(); in getDependencies()
580 private Set<Dependency<?>> removeAssistedDeps(Set<Dependency<?>> deps) { in removeAssistedDeps()
[all …]
/external/guice/extensions/throwingproviders/src/com/google/inject/throwingproviders/
DThrowingProviderBinder.java35 import com.google.inject.spi.Dependency;
260 public Set<Dependency<?>> getDependencies() { in providing()
261 return ImmutableSet.<Dependency<?>>of(Dependency.get(typeKey)); in providing()
331 public Set<Dependency<?>> getDependencies() { in toInternal()
332 return ImmutableSet.<Dependency<?>>of(Dependency.get(resultKey)); in toInternal()
372 public Set<Dependency<?>> getDependencies() { in createResultProvider()
373 return ImmutableSet.<Dependency<?>>of(Dependency.get(targetKey)); in createResultProvider()
DCheckedProviderMethod.java28 import com.google.inject.spi.Dependency;
48 private final ImmutableSet<Dependency<?>> dependencies;
59 ImmutableSet<Dependency<?>> dependencies, in CheckedProviderMethod()
131 public Set<Dependency<?>> getDependencies() { in getDependencies()

1234567