HomeSort by relevance Sort by last modified time
    Searched defs:Dependency (Results 1 - 25 of 262) sorted by null

1 2 3 4 5 6 7 8 91011

  /build/make/tools/
parsedeps.py 9 class Dependency:
29 t = Dependency(tgt)
33 p = Dependency(prereq)
41 t = Dependency(tgt)
java-layers.py 30 sys.stderr.write(" listed in the dependency file.\n")
37 class Dependency:
59 sys.stderr.write("%s:%d: Circular dependency found:\n"
62 sys.stderr.write("%s:%d: Dependency: %s\n"
150 deps[lower] = Dependency(filename, n, lower, top, lowlevel, legacy)
157 sys.stderr.write(("%s:%d: Can't add dependency to top level package "
161 dep = Dependency(filename, n, lower, False, False, False)
225 sys.stderr.write(("%s: Error: Package does not appear in dependency file: "
250 sys.stderr.write("%s: Using this file as dependency file.\n" % argv[1])
  /build/soong/cmd/pom2mk/
pom2mk.go 87 type Dependency struct {
88 XMLName xml.Name `xml:"dependency"`
108 Dependencies []Dependency `xml:"dependencies>dependency"`
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/ProcessDsc/
MultiThread.h 57 BUILD_ITEM *Dependency;
  /external/mockito/src/test/java/org/mockitousage/annotation/
DeprecatedAnnotationEngineApiTest.java 30 @Mock Dependency mock;
34 Dependency dependency; field in class:DeprecatedAnnotationEngineApiTest.Tested
35 public void setDependency(Dependency dependency) {
36 this.dependency = dependency;
40 class Dependency {}
54 assertNotNull(test.tested.dependency);
55 assertSame(test.mock, test.tested.dependency);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
TunerActivity.java 28 import com.android.systemui.Dependency;
40 Dependency.initDependencies(this);
56 Dependency.destroy(FragmentService.class, s -> s.destroyAll());
57 Dependency.clearDependencies();
  /external/guice/core/src/com/google/inject/spi/
Dependency.java 33 * <p>Use {@link #get} to build a freestanding dependency, or {@link InjectionPoint} to build one
40 public final class Dependency<T> {
46 Dependency(InjectionPoint injectionPoint, Key<T> key, boolean nullable, int parameterIndex) {
54 * Returns a new dependency that is not attached to an injection point. The returned dependency is
57 public static <T> Dependency<T> get(Key<T> key) {
58 return new Dependency<T>(null, MoreTypes.canonicalizeKey(key), true, -1);
64 public static Set<Dependency<?>> forInjectionPoints(Set<InjectionPoint> injectionPoints) {
65 List<Dependency<?>> dependencies = Lists.newArrayList();
73 * Returns the key to the binding that satisfies this dependency
109 Dependency dependency = (Dependency) o; local
    [all...]
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
Dependency.java 16 public class Dependency {
29 public Dependency(Expr dependant, Expr other) {
37 public Dependency(Expr dependant, Expr other, Expr condition, boolean expectedOutput) {
  /external/guice/extensions/throwingproviders/src/com/google/inject/throwingproviders/
CheckedProviderMethodsModule.java 31 import com.google.inject.spi.Dependency;
97 List<Dependency<?>> dependencies = Lists.newArrayList();
111 dependencies.add(Dependency.get(key));
  /external/skia/src/gpu/
GrOpList.h 86 * Dump out the GrOpList dependency DAG
140 static GrOpList* Dependency(GrOpList* dt, int index) {
  /external/skia/tools/
sk_tool_utils.h 183 static TopoTestNode* Dependency(TopoTestNode* node, int index) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
Dependency.java 107 * long-term dependency injection solution.
120 public class Dependency extends SystemUI {
121 private static final String TAG = "Dependency";
149 // TODO: Think about ways to push these creation rules out of Dependency to cut down
355 throw new IllegalArgumentException("Unsupported dependency " + cls);
360 private static Dependency sDependency;
378 Dependency d = new Dependency();
395 * Checks to see if a dependency is instantiated, if it is it removes it from
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
RemoteInputController.java 20 import com.android.systemui.Dependency;
44 addCallback(Dependency.get(StatusBarWindowManager.class));
  /external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
FactoryProvider.java 35 import com.google.inject.spi.Dependency;
323 public Set<Dependency<?>> getDependencies() {
324 List<Dependency<?>> dependencies = Lists.newArrayList();
328 dependencies.add(Dependency.get(parameter.getPrimaryBindingKey()));
  /external/llvm/lib/CodeGen/
ImplicitNullChecks.cpp 79 // If this is non-null, then MemOperation has a dependency on on this
166 /// has one and only one transitive dependency, set \p Dependency to that
168 bool isSafeToHoist(MachineInstr *MI, MachineInstr *&Dependency);
221 MachineInstr *&Dependency) {
223 Dependency = nullptr;
240 // instruction causing this dependency can be hoisted too.
243 // We don't have precise dependency information.
246 if (Dependency) {
247 if (Dependency == MI
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
DeadStoreElimination.cpp 541 /// HandleFree - Handle frees of entire structures whose dependency is a store
549 Instruction *Dependency = Dep.getInst();
550 if (!hasMemoryWrite(Dependency) || !isRemovable(Dependency))
554 GetUnderlyingObject(getStoredPointerOperand(Dependency));
561 DeleteDeadInstruction(Dependency, *MD);
565 // Inst's old Dependency is now deleted. Compute the next dependency,
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
MultiUserSwitch.java 32 import com.android.systemui.Dependency;
72 setUserSwitcherController(Dependency.get(UserSwitcherController.class));
142 Dependency.get(ActivityStarter.class).postStartActivityDismissingKeyguard(intent, 0);
  /external/guice/extensions/multibindings/src/com/google/inject/multibindings/
Multibinder.java 44 import com.google.inject.spi.Dependency;
274 private Set<Dependency<?>> dependencies;
327 List<Dependency<?>> dependencies = Lists.newArrayList();
334 dependencies.add(Dependency.get(binding.getKey()));
441 public Set<Dependency<?>> getDependencies() {
443 return ImmutableSet.<Dependency<?>>of(Dependency.get(Key.get(Injector.class)));
475 @Override public Set<Dependency<?>> getDependencies() {
477 return ImmutableSet.<Dependency<?>>of(Dependency.get(Key.get(Injector.class)))
    [all...]
  /external/guice/extensions/throwingproviders/test/com/google/inject/throwingproviders/
ThrowingProviderTest.java 37 import com.google.inject.spi.Dependency;
445 assertEquals(Dependency.get(Key.get(DependentRemoteProvider.class)),
451 new Function<Dependency<?>, Key<?>>() {
452 public Key<?> apply(Dependency<?> from) {
488 new Function<Dependency<?>, Key<?>>() {
489 public Key<?> apply(Dependency<?> from) {
CheckedProviderTest.java 44 import com.google.inject.spi.Dependency;
75 private static final Function<Dependency<?>, Key<?>> DEPENDENCY_TO_KEY =
76 new Function<Dependency<?>, Key<?>>() {
77 public Key<?> apply(Dependency<?> from) {
567 assertEquals(Dependency.get(Key.get(DependentRemoteProvider.class)),
    [all...]
  /external/llvm/lib/Transforms/Scalar/
DeadStoreElimination.cpp 584 /// Handle frees of entire structures whose dependency is a store
604 Instruction *Dependency = Dep.getInst();
605 if (!hasMemoryWrite(Dependency, *TLI) || !isRemovable(Dependency))
609 GetUnderlyingObject(getStoredPointerOperand(Dependency), DL);
616 BasicBlock::iterator BBI(Dependency);
617 deleteDeadInstruction(Dependency, &BBI, *MD, *TLI);
621 // Inst's old Dependency is now deleted. Compute the next dependency,
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceCfg.cpp 606 CfgUnorderedMap<Variable *, std::vector<Inst *>, VariableHash> Dependency;
629 auto DepIter = Dependency.find(Instr.getDest());
630 if (DepIter != Dependency.end()) {
661 Dependency[Var].push_back(&Instr);
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiObjectManagementTests.cpp 270 struct Dependency
275 Dependency (const Environment& env, const typename Case::Parameters& params)
490 Dependency<Instance> instance;
705 Dependency<Buffer> buffer;
706 Dependency<DeviceMemory> memory;
848 Dependency<Image> image;
849 Dependency<DeviceMemory> memory;
    [all...]
  /external/protobuf/csharp/src/Google.Protobuf/Reflection/
Descriptor.cs 145 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.Reflection.FileDescriptorProto), global::Google.Protobuf.Reflection.FileDescriptorProto.Parser, new[]{ "Name", "Package", "Dependency", "PublicDependency", "WeakDependency", "MessageType", "EnumType", "Service", "Extension", "Options", "SourceCodeInfo", "Syntax" }, null, null, null),
336 /// <summary>Field number for the "dependency" field.</summary>
344 public pbc::RepeatedField<string> Dependency {
354 /// Indexes of the public imported files in the dependency list above.
366 /// Indexes of the weak imported files in the dependency list.
    [all...]
  /prebuilts/tools/common/m2/repository/org/eclipse/aether/aether-api/1.0.2.v20150114/
aether-api-1.0.2.v20150114.jar 

Completed in 851 milliseconds

1 2 3 4 5 6 7 8 91011