OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ExecutionFailed
(Results
1 - 6
of
6
) sorted by null
/external/llvm/lib/Support/
Program.cpp
33
bool *
ExecutionFailed
) {
36
if (
ExecutionFailed
)
37
*
ExecutionFailed
= false;
43
if (
ExecutionFailed
)
44
*
ExecutionFailed
= true;
52
bool *
ExecutionFailed
) {
54
if (
ExecutionFailed
)
55
*
ExecutionFailed
= false;
57
if (
ExecutionFailed
)
58
*
ExecutionFailed
= true
[
all
...]
/external/llvm/unittests/Support/
ProgramTest.cpp
150
bool
ExecutionFailed
;
154
&
ExecutionFailed
);
155
EXPECT_FALSE(
ExecutionFailed
) << Error;
187
bool
ExecutionFailed
;
197
&
ExecutionFailed
);
198
EXPECT_FALSE(
ExecutionFailed
) << error;
222
bool
ExecutionFailed
;
224
&Error, &
ExecutionFailed
);
225
ASSERT_FALSE(
ExecutionFailed
) << Error;
243
&Error, &
ExecutionFailed
);
[
all
...]
/external/clang/lib/Driver/
Job.cpp
219
bool *
ExecutionFailed
) const {
230
ExecutionFailed
);
249
if (
ExecutionFailed
)
250
*
ExecutionFailed
= true;
256
/*memoryLimit*/ 0, ErrMsg,
ExecutionFailed
);
282
bool *
ExecutionFailed
) const {
283
int PrimaryStatus = Command::Execute(Redirects, ErrMsg,
ExecutionFailed
);
287
// Clear
ExecutionFailed
and ErrMsg before falling back.
290
if (
ExecutionFailed
)
291
*
ExecutionFailed
= false
[
all
...]
Compilation.cpp
158
bool
ExecutionFailed
;
159
int Res = C.Execute(Redirects, &Error, &
ExecutionFailed
);
168
return
ExecutionFailed
? 1 : Res;
/external/llvm/include/llvm/Support/
Program.h
119
bool *
ExecutionFailed
= nullptr);
129
std::string *ErrMsg = nullptr, bool *
ExecutionFailed
= nullptr);
/external/clang/include/clang/Driver/
Job.h
97
bool *
ExecutionFailed
) const;
135
bool *
ExecutionFailed
) const override;
Completed in 103 milliseconds