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

  /external/clang/lib/Frontend/
CreateInvocationFromCommandLine.cpp 65 const driver::JobList &Jobs = C->getJobs();
66 if (Jobs.size() != 1 || !isa<driver::Command>(*Jobs.begin())) {
69 Jobs.Print(OS, "; ", true);
74 const driver::Command &Cmd = cast<driver::Command>(*Jobs.begin());
  /external/clang/examples/clang-interpreter/
main.cpp 113 const driver::JobList &Jobs = C->getJobs();
114 if (Jobs.size() != 1 || !isa<driver::Command>(*Jobs.begin())) {
117 Jobs.Print(OS, "; ", true);
122 const driver::Command &Cmd = cast<driver::Command>(*Jobs.begin());
140 Jobs.Print(llvm::errs(), "\n", true);
  /external/clang/lib/Driver/
Compilation.cpp 204 const JobList *Jobs = cast<JobList>(&J);
205 for (const auto &Job : *Jobs)
213 // Free actions and jobs.
215 Jobs.clear();
  /external/clang/include/clang/Driver/
Compilation.h 51 /// The root list of jobs.
52 JobList Jobs;
94 JobList &getJobs() { return Jobs; }
95 const JobList &getJobs() const { return Jobs; }
97 void addCommand(std::unique_ptr<Command> C) { Jobs.addJob(std::move(C)); }
Job.h 165 /// JobList - A sequence of jobs to perform.
174 list_type Jobs;
184 void addJob(std::unique_ptr<Job> J) { Jobs.push_back(std::move(J)); }
189 const list_type &getJobs() const { return Jobs; }
191 size_type size() const { return Jobs.size(); }
192 iterator begin() { return Jobs.begin(); }
193 const_iterator begin() const { return Jobs.begin(); }
194 iterator end() { return Jobs.end(); }
195 const_iterator end() const { return Jobs.end(); }
  /external/clang/lib/Tooling/
CompilationDatabase.cpp 113 // all inputs, direct and indirect, of compile jobs.
205 /// \li false if \c Args cannot be used for compilation jobs (e.g.
215 // The clang executable path isn't required since the jobs the driver builds
237 // up with no jobs but then this is the user's fault.
249 const driver::JobList &Jobs = Compilation->getJobs();
253 for (const auto &Job : Jobs) {
256 // Collect only for Assemble jobs. If we do all jobs we get duplicates
257 // since Link jobs point to Assemble jobs as inputs
    [all...]
Tooling.cpp 63 /// \brief Retrieves the clang CC1 specific flags out of the compilation's jobs.
71 const clang::driver::JobList &Jobs = Compilation->getJobs();
72 if (Jobs.size() != 1 || !isa<clang::driver::Command>(*Jobs.begin())) {
75 Jobs.Print(error_stream, "; ", true);
83 cast<clang::driver::Command>(*Jobs.begin());
  /external/clang/utils/analyzer/
SATestBuild.py 144 # Number of jobs.
145 Jobs = int(math.ceil(detectCPUs() * 0.75))
224 Command += " -j%d" % Jobs

Completed in 113 milliseconds