OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Jobs
(Results
1 - 10
of
10
) sorted by null
/external/clang/include/clang/Driver/
Job.h
123
/// JobList - A sequence of
jobs
to perform.
132
list_type
Jobs
;
142
void addJob(Job *J) {
Jobs
.push_back(J); }
147
const list_type &getJobs() const { return
Jobs
; }
149
size_type size() const { return
Jobs
.size(); }
150
iterator begin() { return
Jobs
.begin(); }
151
const_iterator begin() const { return
Jobs
.begin(); }
152
iterator end() { return
Jobs
.end(); }
153
const_iterator end() const { return
Jobs
.end(); }
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(Command *C) {
Jobs
.addJob(C); }
/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
95
const driver::JobList &
Jobs
= C->getJobs();
96
if (
Jobs
.size() != 1 || !isa<driver::Command>(*
Jobs
.begin())) {
99
Jobs
.Print(OS, "; ", true);
104
const driver::Command *Cmd = cast<driver::Command>(*
Jobs
.begin());
122
Jobs
.Print(llvm::errs(), "\n", true);
/external/clang/lib/Driver/
Compilation.cpp
204
const JobList *
Jobs
= cast<JobList>(&J);
205
for (JobList::const_iterator it =
Jobs
->begin(), ie =
Jobs
->end();
214
// Free actions and
jobs
.
216
Jobs
.clear();
Job.cpp
188
DeleteContainerPointers(
Jobs
);
/external/clang/lib/Tooling/
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());
CompilationDatabase.cpp
114
// 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 (driver::JobList::const_iterator I =
Jobs
.begin(), E =
Jobs
.end(); I != E;
257
// Collect only for Assemble
jobs
. If we do all
jobs
we get duplicates
258
// since Link
jobs
point to Assemble jobs as inputs
[
all
...]
/external/clang/utils/analyzer/
SATestBuild.py
144
# Number of
jobs
.
145
Jobs
= int(math.ceil(detectCPUs() * 0.75))
224
Command += " -j%d" %
Jobs
/external/chromium-trace/
script.js
[
all
...]
Completed in 160 milliseconds