Home
last modified time | relevance | path

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

12345678

/external/python/cpython2/PC/VC6/
Dpcbuild.dsw14 Begin Project Dependency
16 End Project Dependency
29 Begin Project Dependency
31 End Project Dependency
68 Begin Project Dependency
70 End Project Dependency
83 Begin Project Dependency
85 End Project Dependency
98 Begin Project Dependency
100 End Project Dependency
[all …]
/external/turbine/javatests/com/google/turbine/deps/
DDependenciesTest.java118 private Map<Path, DepsProto.Dependency.Kind> depsMap(DepsProto.Dependencies deps) { in depsMap()
120 .collect(Collectors.toMap(d -> Paths.get(d.getPath()), DepsProto.Dependency::getKind)); in depsMap()
133 assertThat(depsMap(deps)).containsExactly(liba, DepsProto.Dependency.Kind.EXPLICIT); in simple()
159 assertThat(depsMap(deps)).containsExactly(libb, DepsProto.Dependency.Kind.EXPLICIT); in excluded()
188 libb, DepsProto.Dependency.Kind.EXPLICIT, liba, DepsProto.Dependency.Kind.EXPLICIT); in transitive()
230 DepsProto.Dependency.Kind.EXPLICIT, in closure()
232 DepsProto.Dependency.Kind.EXPLICIT, in closure()
234 DepsProto.Dependency.Kind.EXPLICIT); in closure()
248 libb, DepsProto.Dependency.Kind.EXPLICIT, liba, DepsProto.Dependency.Kind.EXPLICIT); in closure()
279 "b.jar", DepsProto.Dependency.Kind.EXPLICIT, in reducedClasspathTest()
[all …]
/external/guice/core/test/com/google/inject/spi/
DHasDependenciesTest.java46 ImmutableSet.<Dependency<?>>of(Dependency.get(Key.get(Integer.class))), 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()
98 return ImmutableSet.<Dependency<?>>of(Dependency.get(Key.get(Integer.class))); in getDependencies()
105 public Set<Dependency<?>> getDependencies() { in getDependencies()
106 return ImmutableSet.<Dependency<?>>of(Dependency.get(Key.get(Integer.class))); in getDependencies()
/external/guice/core/src/com/google/inject/spi/
DDependency.java39 public final class Dependency<T> { class
45 Dependency(InjectionPoint injectionPoint, Key<T> key, boolean nullable, int parameterIndex) { in Dependency() method in Dependency
56 public static <T> Dependency<T> get(Key<T> key) { in get()
57 return new Dependency<T>(null, MoreTypes.canonicalizeKey(key), true, -1); in get()
61 public static Set<Dependency<?>> forInjectionPoints(Set<InjectionPoint> injectionPoints) { in forInjectionPoints()
62 List<Dependency<?>> dependencies = Lists.newArrayList(); in forInjectionPoints()
103 if (o instanceof Dependency) { in equals()
104 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()
65 public Dependency<T> getDependency() { in getDependency()
115 public Set<Dependency<?>> getDependencies() { in getProvider()
119 return ImmutableSet.<Dependency<?>>of(Dependency.get(providerKey)); in getProvider()
DDependencyAndSource.java37 private final Dependency<?> dependency;
40 public DependencyAndSource(Dependency<?> dependency, Object source) { in DependencyAndSource()
52 public Dependency<?> getDependency() { in getDependency()
72 Dependency<?> dep = getDependency(); in toString()
/external/guice/core/src/com/google/inject/internal/
DInternalContext.java20 import com.google.inject.spi.Dependency;
37 private Dependency<?> dependency;
102 Dependency<?> getDependency() { in getDependency()
107 Dependency<?> pushDependency(Dependency<?> dependency, Object source) { in pushDependency()
108 Dependency<?> previous = this.dependency; in pushDependency()
116 void popStateAndSetDependency(Dependency<?> newDependency) { in popStateAndSetDependency()
157 Dependency<?> dependency; in getDependencyChain()
159 dependency = Dependency.get((com.google.inject.Key<?>) evenEntry); in getDependencyChain()
161 dependency = (Dependency<?>) evenEntry; in getDependencyChain()
DRealOptionalBinder.java41 import com.google.inject.spi.Dependency;
302 private Dependency<?> targetDependency;
319 protected Object doProvision(InternalContext context, Dependency dependency) in doProvision()
325 Dependency<?> localDependency = targetDependency; in doProvision()
327 Dependency previous = context.pushDependency(localDependency, getSource()); in doProvision()
343 public Set<Dependency<?>> getDependencies() { in getDependencies()
399 protected Object doProvision(InternalContext context, Dependency dependency) { in doProvision()
404 public Set<Dependency<?>> getDependencies() { in getDependencies()
433 protected T doProvision(InternalContext context, Dependency<?> dependency) in doProvision()
449 public Set<Dependency<?>> getDependencies() { in getDependencies()
[all …]
DSingleParameterInjector.java19 import com.google.inject.spi.Dependency;
25 private final Dependency<T> dependency;
31 SingleParameterInjector(Dependency<T> dependency, BindingImpl<? extends T> binding) { in SingleParameterInjector()
38 Dependency<T> localDependency = dependency; in inject()
39 Dependency previous = context.pushDependency(localDependency, source); in inject()
DRealMultibinder.java26 import com.google.inject.spi.Dependency;
170 public Set<Dependency<?>> getDependencies() { in getDependencies()
183 protected Set<T> doProvision(InternalContext context, Dependency<?> dependency) in doProvision()
310 private static final ImmutableSet<Dependency<?>> MODULE_DEPENDENCIES =
311 ImmutableSet.<Dependency<?>>of(Dependency.get(Key.get(Injector.class)));
326 private ImmutableSet<Dependency<?>> dependencies = MODULE_DEPENDENCIES;
327 private ImmutableSet<Dependency<?>> providerDependencies = MODULE_DEPENDENCIES;
349 List<Dependency<?>> dependencies = Lists.newArrayList(); in initialize()
350 List<Dependency<?>> providerDependencies = Lists.newArrayList(); in initialize()
366 dependencies.add(Dependency.get(key)); in initialize()
[all …]
DProviderMethod.java29 import com.google.inject.spi.Dependency;
61 ImmutableSet<Dependency<?>> dependencies, in create()
94 private final ImmutableSet<Dependency<?>> dependencies;
108 ImmutableSet<Dependency<?>> dependencies, in ProviderMethod()
170 protected T doProvision(InternalContext context, Dependency<?> dependency) in doProvision()
191 public Set<Dependency<?>> getDependencies() { in getDependencies()
252 ImmutableSet<Dependency<?>> dependencies, in FastClassProviderMethod()
277 ImmutableSet<Dependency<?>> dependencies, in ReflectionProviderMethod()
DExposedBindingImpl.java25 import com.google.inject.spi.Dependency;
50 public Set<Dependency<?>> getDependencies() { in getDependencies()
51 return ImmutableSet.<Dependency<?>>of(Dependency.get(Key.get(Injector.class))); in getDependencies()
DRealMapBinder.java36 import com.google.inject.spi.Dependency;
246 private static final ImmutableSet<Dependency<?>> MODULE_DEPENDENCIES =
247 ImmutableSet.<Dependency<?>>of(Dependency.get(Key.get(Injector.class)));
703 private Set<Dependency<?>> dependencies = RealMapBinder.MODULE_DEPENDENCIES;
710 public Set<Dependency<?>> getDependencies() { in getDependencies()
717 ImmutableSet.Builder<Dependency<?>> dependenciesBuilder = ImmutableSet.builder(); in doInitialize()
720 dependenciesBuilder.add(Dependency.get(getKeyOfProvider(entry.getValue().getKey()))); in doInitialize()
728 protected Map<K, Provider<V>> doProvision(InternalContext context, Dependency<?> dependency) { in doProvision()
736 private Set<Dependency<?>> dependencies = RealMapBinder.MODULE_DEPENDENCIES;
760 ImmutableSet.Builder<Dependency<?>> dependenciesBuilder = ImmutableSet.builder(); in doInitialize()
[all …]
DInternalProviderInstanceBindingImpl.java7 import com.google.inject.spi.Dependency;
110 public T get(final InternalContext context, final Dependency<?> dependency, boolean linked) in get()
131 protected abstract T doProvision(InternalContext context, Dependency<?> dependency) in doProvision()
147 final InternalContext context, final Dependency<?> dependency, boolean linked)
180 Dependency<?> dependency,
/external/desugar/test/java/com/google/devtools/build/android/desugar/dependencies/
DMetadataCollectorTest.java20 import com.google.devtools.build.android.desugar.proto.DesugarDeps.Dependency;
47 Dependency.newBuilder().setOrigin(wrapType("a")).setTarget(wrapType("b$$CC")).build(), in testAssumeCompanionClass()
48 Dependency.newBuilder().setOrigin(wrapType("b")).setTarget(wrapType("b$$CC")).build(), in testAssumeCompanionClass()
49 Dependency.newBuilder().setOrigin(wrapType("a")).setTarget(wrapType("a$$CC")).build()); in testAssumeCompanionClass()
62 Dependency.newBuilder().setOrigin(wrapType("a")).setTarget(wrapType("b")).build(), in testMissingImplementedInterface()
63 Dependency.newBuilder().setOrigin(wrapType("a")).setTarget(wrapType("c")).build(), in testMissingImplementedInterface()
64 Dependency.newBuilder().setOrigin(wrapType("c")).setTarget(wrapType("b")).build()); in testMissingImplementedInterface()
/external/guice/core/src/com/google/inject/util/
DProviders.java27 import com.google.inject.spi.Dependency;
103 Set<Dependency<?>> mutableDeps = Sets.newHashSet(); in guicify()
107 final Set<Dependency<?>> dependencies = ImmutableSet.copyOf(mutableDeps); in guicify()
143 private final Set<Dependency<?>> dependencies;
146 Set<Dependency<?>> dependencies, javax.inject.Provider<T> delegate) { in GuicifiedProviderWithDependencies()
158 public Set<Dependency<?>> getDependencies() { in getDependencies()
/external/llvm/lib/CodeGen/
DImplicitNullChecks.cpp168 bool isSafeToHoist(MachineInstr *MI, MachineInstr *&Dependency);
221 MachineInstr *&Dependency) { in isSafeToHoist() argument
223 Dependency = nullptr; in isSafeToHoist()
246 if (Dependency) { in isSafeToHoist()
247 if (Dependency == MI) in isSafeToHoist()
279 Dependency = MI; in isSafeToHoist()
427 MachineInstr *Dependency = nullptr; in analyzeBlockForNullChecks() local
431 HD.isSafeToHoist(&MI, Dependency)) { in analyzeBlockForNullChecks()
462 !Dependency || in analyzeBlockForNullChecks()
463 all_of(Dependency->operands(), DependencyOperandIsOk); in analyzeBlockForNullChecks()
[all …]
/external/tinyxml/
Dtinyxml.dsw14 Begin Project Dependency
16 End Project Dependency
29 Begin Project Dependency
31 End Project Dependency
/external/libusb/msvc/
Dlibusb.dsw38 Begin Project Dependency
40 End Project Dependency
53 Begin Project Dependency
55 End Project Dependency
/external/turbine/proto/
Ddeps.proto22 message Dependency { message
25 // Dependency used explicitly in the source.
27 // Dependency that is implicitly loaded and used by the compiler.
38 // Dependency kind
44 repeated Dependency dependency = 1;
/external/protobuf/csharp/src/Google.Protobuf/Reflection/
DFileDescriptor.cs101 if (index < 0 || index >= proto.Dependency.Count)
105 string name = proto.Dependency[index];
247 if (dependencies.Length != proto.Dependency.Count) in BuildFrom()
254 for (int i = 0; i < proto.Dependency.Count; i++) in BuildFrom()
256 if (dependencies[i].Name != proto.Dependency[i]) in BuildFrom()
262 proto.Dependency[i] + " but was: " + dependencies[i].Name); in BuildFrom()
/external/mockito/src/test/java/org/mockitousage/annotation/
DDeprecatedAnnotationEngineApiTest.java30 @Mock Dependency mock;
34 Dependency dependency;
35 public void setDependency(Dependency dependency) { in setDependency()
40 class Dependency {} class in DeprecatedAnnotationEngineApiTest
/external/guice/extensions/throwingproviders/src/com/google/inject/throwingproviders/
DThrowingProviderBinder.java34 import com.google.inject.spi.Dependency;
256 public Set<Dependency<?>> getDependencies() { in providing()
257 return ImmutableSet.<Dependency<?>>of(Dependency.get(typeKey)); in providing()
334 public Set<Dependency<?>> getDependencies() { in toInternal()
335 return ImmutableSet.<Dependency<?>>of(Dependency.get(resultKey)); in toInternal()
374 public Set<Dependency<?>> getDependencies() { in createResultProvider()
375 return ImmutableSet.<Dependency<?>>of(Dependency.get(targetKey)); in createResultProvider()
/external/v8/src/compiler/
Dcompilation-dependencies.cc17 class CompilationDependencies::Dependency : public ZoneObject { class in v8::internal::compiler::CompilationDependencies
23 class InitialMapDependency final : public CompilationDependencies::Dependency {
52 : public CompilationDependencies::Dependency {
85 class StableMapDependency final : public CompilationDependencies::Dependency {
103 class TransitionDependency final : public CompilationDependencies::Dependency {
122 : public CompilationDependencies::Dependency {
147 class FieldTypeDependency final : public CompilationDependencies::Dependency {
179 : public CompilationDependencies::Dependency {
209 class ProtectorDependency final : public CompilationDependencies::Dependency {
232 : public CompilationDependencies::Dependency {
[all …]
/external/lz4/examples/
Dstreaming_api_basics.md43 (No Dependency)
55 Internal Dependency Internal Dependency
67 Dependency Dependency Dependency

12345678