/external/python/cpython2/PC/VC6/ |
D | pcbuild.dsw | 14 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/ |
D | DependenciesTest.java | 118 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/ |
D | HasDependenciesTest.java | 46 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/ |
D | Dependency.java | 39 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()
|
D | ProviderLookup.java | 42 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()
|
D | DependencyAndSource.java | 37 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/ |
D | InternalContext.java | 20 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()
|
D | RealOptionalBinder.java | 41 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 …]
|
D | SingleParameterInjector.java | 19 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()
|
D | RealMultibinder.java | 26 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 …]
|
D | ProviderMethod.java | 29 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()
|
D | ExposedBindingImpl.java | 25 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()
|
D | RealMapBinder.java | 36 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 …]
|
D | InternalProviderInstanceBindingImpl.java | 7 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/ |
D | MetadataCollectorTest.java | 20 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/ |
D | Providers.java | 27 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/ |
D | ImplicitNullChecks.cpp | 168 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/ |
D | tinyxml.dsw | 14 Begin Project Dependency 16 End Project Dependency 29 Begin Project Dependency 31 End Project Dependency
|
/external/libusb/msvc/ |
D | libusb.dsw | 38 Begin Project Dependency 40 End Project Dependency 53 Begin Project Dependency 55 End Project Dependency
|
/external/turbine/proto/ |
D | deps.proto | 22 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/ |
D | FileDescriptor.cs | 101 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/ |
D | DeprecatedAnnotationEngineApiTest.java | 30 @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/ |
D | ThrowingProviderBinder.java | 34 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/ |
D | compilation-dependencies.cc | 17 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/ |
D | streaming_api_basics.md | 43 (No Dependency) 55 Internal Dependency Internal Dependency 67 Dependency Dependency Dependency
|