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

  /external/clang/include/clang/Frontend/
DependencyOutputOptions.h 24 unsigned UsePhonyTargets : 1; ///< Include phony targets for each
38 /// A list of names to use as the targets in the dependency file; this list
40 std::vector<std::string> Targets;
  /external/llvm/lib/Support/
TargetRegistry.cpp 28 // Provide special warning when no targets are initialized.
30 Error = "Unable to find target for this triple (no targets are registered)";
47 Error = "No available targets are compatible with this triple, "
48 "see -version for the available targets.";
53 // good best targets.
55 Error = std::string("Cannot choose between targets \"") +
76 // Add to the list of targets.
103 std::vector<std::pair<StringRef, const Target*> > Targets;
108 Targets.push_back(std::make_pair(I->getName(), &*I));
109 Width = std::max(Width, Targets.back().first.size())
    [all...]
  /external/clang/lib/Frontend/
DependencyFile.cpp 35 std::vector<std::string> Targets;
49 : PP(_PP), OutputFile(Opts.OutputFile), Targets(Opts.Targets),
75 if (Opts.Targets.empty()) {
176 // Write out the dependency targets, trying to avoid overly long
184 I = Targets.begin(), E = Targets.end(); I != E; ++I) {
195 // Targets already quoted as needed.
220 // Create phony targets if requested.
  /external/llvm/utils/TableGen/
CodeGenTarget.cpp 116 std::vector<Record*> Targets = Records.getAllDerivedDefinitions("Target");
117 if (Targets.size() == 0)
119 if (Targets.size() != 1)
121 TargetRec = Targets[0];

Completed in 1032 milliseconds