/external/guice/core/test/com/google/inject/spi/ |
D | HasDependenciesTest.java | 47 binding.getDependencies()); in testInstanceWithDependencies() 61 Dependency<?> onlyDependency = Iterables.getOnlyElement(binding.getDependencies()); in testInstanceWithoutDependencies() 76 Dependency<?> onlyDependency = Iterables.getOnlyElement(binding.getDependencies()); in testProvider() 97 public Set<Dependency<?>> getDependencies() { in getDependencies() method in HasDependenciesTest.AWithDependencies 105 public Set<Dependency<?>> getDependencies() { in getDependencies() method in HasDependenciesTest.ProviderOfAWithDependencies
|
D | InjectionPointTest.java | 70 Dependency<?> dependency = getOnlyElement(injectionPoint.getDependencies()); in testFieldInjectionPoint() 85 getOnlyElement(new InjectionPoint(typeLiteral, fooField, false).getDependencies())); in testFieldInjectionPoint() 99 Dependency<?> dependency = getOnlyElement(injectionPoint.getDependencies()); in testMethodInjectionPoint() 114 getOnlyElement(new InjectionPoint(typeLiteral, barMethod, false).getDependencies())); in testMethodInjectionPoint() 129 Dependency<?> dependency = getOnlyElement(injectionPoint.getDependencies()); in testConstructorInjectionPoint() 143 dependency, getOnlyElement(new InjectionPoint(typeLiteral, constructor).getDependencies())); in testConstructorInjectionPoint() 167 assertEquals(ImmutableList.<Dependency>of(), injectionPoint.getDependencies()); in testForConstructor() 260 new Key<Map<String, String>>() {}, getOnlyElement(constructor.getDependencies()).getKey()); in testAddForParameterizedInjections() 263 assertEquals(new Key<Set<String>>() {}, getOnlyElement(field.getDependencies()).getKey()); in testAddForParameterizedInjections() 380 assertEquals(literals.length, point.getDependencies().size()); in assertPointDependencies() [all …]
|
D | ProviderMethodsTest.java | 380 binding.getDependencies()); 496 ((HasDependencies) stringBinding).getDependencies(), stringMethod.getDependencies()); 505 assertEquals(((HasDependencies) intBinding).getDependencies(), intMethod.getDependencies()); 1016 Dependency<?> fooDependency = Iterables.getOnlyElement(fooPoint.getDependencies());
|
/external/guice/core/src/com/google/inject/internal/ |
D | InstanceBindingImpl.java | 71 public Set<Dependency<?>> getDependencies() { in getDependencies() method in InstanceBindingImpl 73 ? ImmutableSet.copyOf(((HasDependencies) instance).getDependencies()) in getDependencies()
|
D | ProviderInstanceBindingImpl.java | 89 public Set<Dependency<?>> getDependencies() { in getDependencies() method in ProviderInstanceBindingImpl 91 ? ImmutableSet.copyOf(((HasDependencies) providerInstance).getDependencies()) in getDependencies()
|
D | RealOptionalBinder.java | 343 public Set<Dependency<?>> getDependencies() { in getDependencies() method in RealOptionalBinder.JavaOptionalProvider 404 public Set<Dependency<?>> getDependencies() { in getDependencies() method in RealOptionalBinder.JavaOptionalProviderProvider 449 public Set<Dependency<?>> getDependencies() { in getDependencies() method in RealOptionalBinder.RealDirectTypeProvider 478 public Set<Dependency<?>> getDependencies() { in getDependencies() method in RealOptionalBinder.RealOptionalProviderProvider 535 public Set<Dependency<?>> getDependencies() { in getDependencies() method in RealOptionalBinder.RealOptionalKeyProvider
|
D | RealMultibinder.java | 170 public Set<Dependency<?>> getDependencies() { in getDependencies() method in RealMultibinder.RealMultibinderProvider 171 return bindingSelection.getDependencies(); in getDependencies() 401 ImmutableSet<Dependency<?>> getDependencies() { in getDependencies() method in RealMultibinder.BindingSelection 557 public Set<Dependency<?>> getDependencies() { in getDependencies() method in RealMultibinder.RealMultibinderCollectionOfProvidersProvider
|
D | SingleFieldInjector.java | 35 this.dependency = injectionPoint.getDependencies().get(0); in SingleFieldInjector()
|
D | ExposedBindingImpl.java | 50 public Set<Dependency<?>> getDependencies() { in getDependencies() method in ExposedBindingImpl
|
/external/guice/core/src/com/google/inject/util/ |
D | Providers.java | 105 mutableDeps.addAll(ip.getDependencies()); in guicify() 158 public Set<Dependency<?>> getDependencies() { in getDependencies() method in Providers.GuicifiedProviderWithDependencies
|
/external/guice/extensions/throwingproviders/test/com/google/inject/throwingproviders/ |
D | CheckedProviderTest.java | 591 Iterables.getOnlyElement(hasDependencies.getDependencies()).getKey()); in testDependencies_Bind() 595 Iterables.getOnlyElement(hasDependencies.getDependencies())); in testDependencies_Bind() 600 Iterables.transform(hasDependencies.getDependencies(), DEPENDENCY_TO_KEY)); in testDependencies_Bind() 636 Iterables.getOnlyElement(hasDependencies.getDependencies()).getKey()); in testDependencies_Provides() 641 Iterables.getOnlyElement(hasDependencies.getDependencies()).getKey()); in testDependencies_Provides() 644 Iterables.transform(hasDependencies.getDependencies(), DEPENDENCY_TO_KEY)); in testDependencies_Provides() 674 key = Iterables.getOnlyElement(hasDependencies.getDependencies()).getKey(); in testDependencies_Cxtor() 679 key = Iterables.getOnlyElement(hasDependencies.getDependencies()).getKey(); in testDependencies_Cxtor() 684 key = Iterables.getOnlyElement(hasDependencies.getDependencies()).getKey(); in testDependencies_Cxtor() 691 Iterables.transform(hasDependencies.getDependencies(), DEPENDENCY_TO_KEY)); in testDependencies_Cxtor()
|
D | ThrowingProviderTest.java | 483 Iterables.getOnlyElement(hasDependencies.getDependencies()).getKey()); in testDependencies_Bind() 487 Iterables.getOnlyElement(hasDependencies.getDependencies())); in testDependencies_Bind() 493 hasDependencies.getDependencies(), in testDependencies_Bind() 535 Iterables.getOnlyElement(hasDependencies.getDependencies()).getKey()); in testDependencies_Provides() 540 Iterables.getOnlyElement(hasDependencies.getDependencies()).getKey()); in testDependencies_Provides() 544 hasDependencies.getDependencies(), in testDependencies_Provides()
|
/external/swiftshader/third_party/LLVM/lib/TableGen/ |
D | TGParser.h | 70 const std::vector<std::string> &getDependencies() const { in getDependencies() function 71 return Lex.getDependencies(); in getDependencies()
|
/external/guice/core/src/com/google/inject/spi/ |
D | HasDependencies.java | 37 Set<Dependency<?>> getDependencies(); in getDependencies() method
|
D | ConvertedConstantBinding.java | 50 Set<Dependency<?>> getDependencies(); in getDependencies() method
|
/external/emma/tools/java/com/vladium/tools/ |
D | ClassDep.java | 76 final String [] deps = _this.getDependencies (true); in main() 111 public String [] getDependencies (final boolean includeRootSet) in getDependencies() method in ClassDep
|
/external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/ |
D | AssistedMethod.java | 43 Set<Dependency<?>> getDependencies(); in getDependencies() method
|
D | FactoryProvider2.java | 188 public Set<Dependency<?>> getDependencies() { in getDependencies() method in FactoryProvider2.AssistData 325 Set<Dependency<?>> deps = getDependencies(ctorInjectionPoint, implementation); in FactoryProvider2() 438 public Set<Dependency<?>> getDependencies() { in getDependencies() method in FactoryProvider2 610 private Set<Dependency<?>> getDependencies( in getDependencies() method in FactoryProvider2 613 builder.addAll(ctorPoint.getDependencies()); in getDependencies() 616 builder.addAll(ip.getDependencies()); in getDependencies()
|
/external/llvm/lib/TableGen/ |
D | TGParser.h | 101 const TGLexer::DependenciesMapTy &getDependencies() const { in getDependencies() function 102 return Lex.getDependencies(); in getDependencies()
|
/external/guice/extensions/throwingproviders/src/com/google/inject/throwingproviders/ |
D | ThrowingProviderBinder.java | 256 public Set<Dependency<?>> getDependencies() { in providing() 334 public Set<Dependency<?>> getDependencies() { in toInternal() 374 public Set<Dependency<?>> getDependencies() { in createResultProvider() method in ThrowingProviderBinder
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/TableGen/ |
D | TGParser.h | 132 const TGLexer::DependenciesMapTy &getDependencies() const { in getDependencies() function 133 return Lex.getDependencies(); in getDependencies()
|
/external/testng/src/main/java/org/testng/xml/ |
D | XmlDependencies.java | 20 public Map<String, String> getDependencies() { in getDependencies() method in XmlDependencies
|
D | XmlGroups.java | 38 public List<XmlDependencies> getDependencies() { in getDependencies() method in XmlGroups
|
/external/guice/extensions/assistedinject/test/com/google/inject/assistedinject/ |
D | ExtensionSpiTest.java | 133 assertEquals(dependencyKeys.size(), assistedMethod.getDependencies().size()); in validateAssistedMethod() 134 for (Dependency<?> dependency : assistedMethod.getDependencies()) { in validateAssistedMethod()
|
/external/kotlinc/lib/ |
D | kotlin-script-runtime.jar | META-INF/
META-INF/MANIFEST.MF
kotlin/
kotlin/script/
kotlin/ ... |