| /src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| ConstantEmitter.h | 37 /// Whether the constant-emission failed. 38 bool Failed = false; 163 Failed = true;
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Testing/Support/ |
| Error.h | 113 *OS << "failed with Error of given type"; 149 *OS << "failed with Error whose message "; 154 *OS << "failed with an Error whose message "; 174 MATCHER(Failed, "") { return !arg.Success(); } 177 testing::Matcher<const detail::ErrorHolder &> Failed() { 182 testing::Matcher<const detail::ErrorHolder &> Failed(M Matcher) {
|
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| FormatVariadic.cpp | 53 bool Failed = Spec.consumeInteger(0, Align); 54 return !Failed;
|
| CrashRecoveryContext.cpp | 37 volatile unsigned Failed : 1; 43 : CRC(CRC), Failed(false), SwitchedThread(false), ValidJumpBuffer(false) { 69 assert(!Failed && "Crash recovery context already failed!"); 70 Failed = true;
|
| YAMLParser.cpp | 277 if (!Failed) 279 Failed = true; 283 bool failed() { function in class:llvm::yaml::Scanner 284 return Failed; 535 bool Failed; 857 Failed = false; 1307 Failed = true; 1852 bool Stream::failed() { return scanner->failed(); } 1955 bool Node::failed() const function in class:Node 2389 bool Document::failed() const { function in class:Document [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Tooling/Transformer/ |
| SourceCode.cpp | 302 bool Failed = Lexer::getRawToken(Loc, Tok, SM, LangOpts, 304 if (Failed)
|
| /src/external/apache2/llvm/dist/clang/include/clang/Lex/ |
| PreprocessorOptions.h | 178 llvm::StringSet<> Failed; 182 return Failed.count(module) > 0; 186 Failed.insert(module); 190 /// The set of modules that failed to build. 194 /// other instances will see that the module has failed and won't try to
|
| /src/external/apache2/llvm/dist/clang/tools/clang-refactor/ |
| TestSupport.cpp | 96 llvm::errs() << "failed to open" << File << "\n"; 177 bool Failed = false; 216 Failed = true; 255 return Failed;
|
| /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/ |
| sanitizer_stackdepot.cpp | 106 Failed, 141 state_ = thread_ ? State::Started : State::Failed;
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
| LegalizeTypes.cpp | 84 bool Failed = false; 137 Failed = true; 142 Failed = true; 147 Failed = true; 150 Failed = true; 154 if (Failed) { 448 bool Failed = false; 456 Failed = true; 465 Failed = true; 477 Failed = true [all...] |
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
| ExprEngineC.cpp | 457 bool Failed = false; 461 Failed = true; 464 val = getStoreManager().attemptDownCast(val, T, Failed); 466 if (Failed) { 496 bool Failed = false; 499 val = getStoreManager().attemptDownCast(val, T, Failed); 502 // Failed to cast or the result is unknown, fall back to conservative. 503 if (Failed || val.isUnknown()) { 694 // We failed to track back where we came from. 702 // We failed to track back where we came from [all...] |
| CallEvent.cpp | 805 bool Failed; 806 ThisVal = StateMgr.getStoreManager().attemptDownCast(ThisVal, Ty, Failed); 807 if (Failed) {
|
| /src/external/apache2/llvm/dist/clang/tools/driver/ |
| cc1as_main.cpp | 508 bool Failed = false; 517 Failed = Diags.Report(diag::err_target_unknown_triple) << Opts.Triple; 530 if (!Failed) { 532 Failed = Parser->Run(Opts.NoInitialTextSection); 535 return Failed; 540 bool Failed = ExecuteAssemblerImpl(Opts, Diags); 543 if (Failed) { 550 return Failed; 618 bool Failed = Diags.hasErrorOccurred() || ExecuteAssembler(Asm, Diags); 625 return !!Failed; [all...] |
| /src/external/apache2/llvm/dist/llvm/utils/TableGen/ |
| IntrinsicEmitter.cpp | 514 bool Failed = false; 519 Failed = true; 526 if (!Failed && (Result >> 31) == 0) {
|
| /src/external/apache2/llvm/dist/clang/lib/Serialization/ |
| GlobalModuleIndex.cpp | 135 "' failed: " + toString(std::move(Err))); 350 bool Failed = true; 356 Failed = false; 361 return Failed; 537 "failed getting buffer for module file"); 913 "failed writing index");
|
| /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/src/ |
| gtest-internal-inl.h | 539 // Gets the number of failed test suites. 555 // Gets the number of failed tests. 582 bool Passed() const { return !Failed(); } 584 // Returns true if and only if the unit test failed (i.e. some test suite 585 // failed or something outside of all tests failed). 586 bool Failed() const { 587 return failed_test_suite_count() > 0 || ad_hoc_test_result()->Failed(); 686 << "Failed to get the current working directory."; 722 // thrown during a test, this test is considered to be failed, bu [all...] |
| /src/sys/arch/prep/include/ |
| residual.h | 149 Failed = 0x1000, /* 1 - device failed POST code tests */ 246 CPU_FAILED = 3, /* CPU is present, but failed POST */
|
| /src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
| Initialization.h | 786 /// A failed initialization sequence. The failure kind tells what 971 /// Describes why initialization failed. 1015 /// Overloading due to reference initialization failed. 1043 /// Reference binding failed. 1046 /// Implicit conversion failed. 1049 /// Implicit conversion failed. 1065 /// Overloading for a user-defined conversion failed. 1068 /// Overloading for initialization by constructor failed. 1071 /// Overloading for list-initialization by constructor failed. 1083 /// List initialization failed at some point [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| ModuloSchedule.cpp | 1310 assert(FirstMI && "Failed to find first MI in schedule"); 1489 // Failed to find any existing phi to reuse, so create a new one. 2057 bool Failed = false; 2061 Failed = true; 2070 if (Failed) { 2077 "Modulo kernel validation (-pipeliner-experimental-cg) failed");
|
| /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/ |
| gtest.h | 145 // When this flag is specified, a failed assertion will throw an 198 // remembers a non-empty message that describes how it failed. 218 // Then the failed expectation EXPECT_TRUE(IsEven(Fib(5))) 363 // Makes a failed assertion result. 366 // Makes a failed assertion result with the given failure message. 571 // of successful test parts and the number of failed test parts. 577 // Returns true if and only if the test passed (i.e. no test part failed). 578 bool Passed() const { return !Skipped() && !Failed(); } 583 // Returns true if and only if the test failed. 584 bool Failed() const [all...] |
| /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/ |
| ObjCMT.cpp | 1411 bool Failed = PP.getRawToken(EndLoc, Tok, /*IgnoreWhiteSpace=*/true); 1412 if (!Failed)
|
| /src/external/apache2/llvm/dist/clang/lib/Lex/ |
| ModuleMap.cpp | 2733 bool Failed = false; 2738 Failed = true; 2743 if (!Failed && ActiveModule->IsAvailable && 2746 Failed = true; 2750 if (!Failed && ActiveModule->InferSubmodules) { 2755 Failed = true; 2769 if (Failed) {
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/ |
| SLPVectorizer.cpp | 912 Failed, ///< We failed to create a vectorizable group 1244 case ReorderingMode::Failed: 1435 ReorderingModes[OpIdx] = ReorderingMode::Failed; 1440 // high priority to the failed strategy, and should improve reordering for 1441 // the non-failed operand indexes. 1473 // We failed to find a best operand, set mode to 'Failed'. 1474 ReorderingModes[OpIdx] = ReorderingMode::Failed; 1498 case ReorderingMode::Failed [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Sema/ |
| SemaTemplateDeduction.cpp | 559 /// "success" result means that template argument deduction has not yet failed, 1014 /// "success" result means that template argument deduction has not yet failed, 1342 /// "success" result means that template argument deduction has not yet failed, 3410 auto Failed = [&]() -> Sema::TemplateDeductionResult { 3467 return Failed(); 3515 return Failed(); 4657 /// failed. 4822 "substituting template parameter for 'auto' failed"); 4830 // If deduction failed, don't diagnose if the initializer is dependent; it 5012 "failed to deduce lambda return type") [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/IR/ |
| Verifier.cpp | 237 /// A check failed, so printout out the condition and the message. 247 /// A check failed (with values to print). 258 /// A debug info check failed. 266 /// A debug info check failed (with values to print). 2644 Assert(Scope, "Failed to find DILocalScope", DL); 5875 bool Failed = false; 5890 Failed = true; 5898 Failed = true; 5909 Failed = true; 5923 Failed = true [all...] |