OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Jobs
(Results
1 - 7
of
7
) sorted by null
/external/clang/lib/Frontend/
CreateInvocationFromCommandLine.cpp
63
// failed. CUDA compilation is an exception as it creates multiple
jobs
. If
67
const driver::JobList &
Jobs
= C->getJobs();
69
if (
Jobs
.size() > 1) {
80
if (
Jobs
.size() == 0 || !isa<driver::Command>(*
Jobs
.begin()) ||
81
(
Jobs
.size() > 1 && !CudaCompilation)) {
84
Jobs
.Print(OS, "; ", true);
89
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/include/clang/Driver/
Compilation.h
54
/// The root list of
jobs
.
55
JobList
Jobs
;
108
JobList &getJobs() { return
Jobs
; }
109
const JobList &getJobs() const { return
Jobs
; }
111
void addCommand(std::unique_ptr<Command> C) {
Jobs
.addJob(std::move(C)); }
187
const JobList &
Jobs
,
Job.h
141
/// JobList - A sequence of
jobs
to perform.
150
list_type
Jobs
;
157
void addJob(std::unique_ptr<Command> J) {
Jobs
.push_back(std::move(J)); }
162
const list_type &getJobs() const { return
Jobs
; }
164
size_type size() const { return
Jobs
.size(); }
165
iterator begin() { return
Jobs
.begin(); }
166
const_iterator begin() const { return
Jobs
.begin(); }
167
iterator end() { return
Jobs
.end(); }
168
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 &Cmd :
Jobs
) {
254
// Collect only for Assemble
jobs
. If we do all
jobs
we get duplicates
255
// since Link
jobs
point to Assemble
jobs
as inputs
[
all
...]
Tooling.cpp
58
/// \brief Retrieves the clang CC1 specific flags out of the compilation's
jobs
.
66
const clang::driver::JobList &
Jobs
= Compilation->getJobs();
67
if (
Jobs
.size() != 1 || !isa<clang::driver::Command>(*
Jobs
.begin())) {
70
Jobs
.Print(error_stream, "; ", true);
78
cast<clang::driver::Command>(*
Jobs
.begin());
/external/clang/utils/analyzer/
SATestBuild.py
150
# Number of
jobs
.
151
Jobs
= int(math.ceil(detectCPUs() * 0.75))
307
Command += " -j%d" %
Jobs
Completed in 191 milliseconds