HomeSort by relevance Sort by last modified time
    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 109 bool ExecutionFailed;
113 &ExecutionFailed);
114 EXPECT_FALSE(ExecutionFailed) << Error;
149 bool ExecutionFailed;
159 &ExecutionFailed);
160 EXPECT_FALSE(ExecutionFailed) << error;
187 bool ExecutionFailed;
189 &Error, &ExecutionFailed);
190 ASSERT_FALSE(ExecutionFailed) << Error;
208 &Error, &ExecutionFailed);
    [all...]
  /external/clang/lib/Driver/
Job.cpp 218 bool *ExecutionFailed) const {
229 ExecutionFailed);
248 if (ExecutionFailed)
249 *ExecutionFailed = true;
255 /*memoryLimit*/ 0, ErrMsg, ExecutionFailed);
280 bool *ExecutionFailed) const {
281 int PrimaryStatus = Command::Execute(Redirects, ErrMsg, ExecutionFailed);
285 // Clear ExecutionFailed and ErrMsg before falling back.
288 if (ExecutionFailed)
289 *ExecutionFailed = false
    [all...]
Compilation.cpp 157 bool ExecutionFailed;
158 int Res = C.Execute(Redirects, &Error, &ExecutionFailed);
167 return ExecutionFailed ? 1 : Res;
  /external/llvm/include/llvm/Support/
Program.h 120 bool *ExecutionFailed = nullptr);
130 std::string *ErrMsg = nullptr, bool *ExecutionFailed = nullptr);
  /external/clang/include/clang/Driver/
Job.h 116 bool *ExecutionFailed) const;
155 bool *ExecutionFailed) const override;

Completed in 135 milliseconds