HomeSort by relevance Sort by last modified time
    Searched defs:Deps (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/build/android/gyp/
write_build_config.py 26 1. inputs/deps of the action ensure that the files are available the first
29 a. inputs/deps ensure that the action runs whenever one of the files changes
54 def Deps(path):
56 return build_utils.GetSortedTransitiveDependencies(deps_config_paths, Deps)
67 '--possible-deps-configs',
117 raise Exception('Unknown deps: ' + str(unknown_deps))
  /external/llvm/unittests/ADT/
DAGDeltaAlgorithmTest.cpp 61 std::vector<edge_ty> Deps;
65 Deps.clear();
66 Deps.push_back(std::make_pair(3, 1));
72 EXPECT_EQ(fixed_set(4, 1, 3, 5, 7), FDA.Run(range(20), Deps));
79 Deps.clear();
80 Deps.push_back(std::make_pair(1, 0));
81 Deps.push_back(std::make_pair(2, 0));
82 Deps.push_back(std::make_pair(4, 0));
83 Deps.push_back(std::make_pair(3, 2));
91 EXPECT_EQ(fixed_set(4, 0, 1, 2, 3), FDA2.Run(range(5), Deps));
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/
test_runner.py 30 class Deps(find_dependencies.FindDependenciesCommand):
36 return super(Deps, self).Run(args)
  /external/llvm/lib/Analysis/
MemDepPrinter.cpp 40 DepSetMap Deps;
58 Deps.clear();
108 Deps[Inst].insert(std::make_pair(getInstTypePair(Res),
114 DepSet &InstDeps = Deps[Inst];
125 Deps[Inst].insert(std::make_pair(getInstTypePair(nullptr, Unknown),
134 Deps[Inst].insert(std::make_pair(getInstTypePair(nullptr, Unknown),
147 DepSet &InstDeps = Deps[Inst];
163 DepSetMap::const_iterator DI = Deps.find(Inst);
164 if (DI == Deps.end())
  /external/llvm/lib/CodeGen/
InlineSpiller.cpp 121 TinyPtrVector<VNInfo*> Deps;
332 OS << " deps[";
333 for (unsigned i = 0, e = SVI.Deps.size(); i != e; ++i)
334 OS << ' ' << SVI.Deps[i]->id << '@' << SVI.Deps[i]->def;
353 // When VNI is non-NULL, add it to SVI's deps, and only propagate to that.
357 SVI->second.Deps.push_back(VNI);
370 TinyPtrVector<VNInfo*> *Deps = VNI ? &FirstDeps : &SVI->second.Deps;
377 DEBUG(dbgs() << " prop to " << Deps->size() << ":
    [all...]
MachineScheduler.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
GVN.cpp 329 const MemoryDependenceAnalysis::NonLocalDepInfo &deps = local
336 for (unsigned i = 0, e = deps.size(); i != e; ++i) {
337 const NonLocalDepEntry *I = &deps[i];
696 void AnalyzeLoadAvailability(LoadInst *LI, LoadDepVect &Deps,
    [all...]

Completed in 4173 milliseconds