| /llvm-project/polly/include/polly/ |
| H A D | ScopDetectionDiagnostic.h | 145 virtual std::string getMessage() const = 0; 223 std::string getMessage() const override; 247 std::string getMessage() const override; 273 std::string getMessage() const override; 299 std::string getMessage() const override; 348 std::string getMessage() const override; 373 std::string getMessage() const override; 396 std::string getMessage() const override; 430 std::string getMessage() const override; 450 std::string getMessage() const override; [all …]
|
| /llvm-project/polly/lib/Analysis/ |
| H A D | ScopDetectionDiagnostic.cpp | 184 OS.indent(level) << "[" << j++ << "] " << Reason->getMessage() << "\n"; in print() 206 std::string ReportInvalidTerminator::getMessage() const { 227 std::string ReportUnreachableInExit::getMessage() const { 255 std::string ReportIndirectPredecessor::getMessage() const { 284 std::string ReportIrreducibleRegion::getMessage() const { 316 std::string ReportUndefCond::getMessage() const { 331 std::string ReportInvalidCond::getMessage() const { 347 std::string ReportUndefOperand::getMessage() const { 362 std::string ReportNonAffBranch::getMessage() const { 378 std::string ReportNoBasePtr::getMessage() cons in getRemarkBB() 207 std::string ReportInvalidTerminator::getMessage() const { getMessage() function in polly::ReportInvalidTerminator 228 std::string ReportUnreachableInExit::getMessage() const { getMessage() function in polly::ReportUnreachableInExit 256 std::string ReportIndirectPredecessor::getMessage() const { getMessage() function in polly::ReportIndirectPredecessor 285 std::string ReportIrreducibleRegion::getMessage() const { getMessage() function in polly::ReportIrreducibleRegion 317 std::string ReportUndefCond::getMessage() const { getMessage() function in polly::ReportUndefCond 332 std::string ReportInvalidCond::getMessage() const { getMessage() function in polly::ReportInvalidCond 348 std::string ReportUndefOperand::getMessage() const { getMessage() function in polly::ReportUndefOperand 363 std::string ReportNonAffBranch::getMessage() const { getMessage() function in polly::ReportNonAffBranch 379 std::string ReportNoBasePtr::getMessage() const { return "No base pointer"; } getMessage() function in polly::ReportNoBasePtr 394 std::string ReportUndefBasePtr::getMessage() const { getMessage() function in polly::ReportUndefBasePtr 413 std::string ReportVariantBasePtr::getMessage() const { getMessage() function in polly::ReportVariantBasePtr 436 std::string ReportDifferentArrayElementSize::getMessage() const { getMessage() function in polly::ReportDifferentArrayElementSize 463 std::string ReportNonAffineAccess::getMessage() const { getMessage() function in polly::ReportNonAffineAccess 488 std::string ReportLoopBound::getMessage() const { getMessage() function in polly::ReportLoopBound 512 std::string ReportLoopHasNoExit::getMessage() const { getMessage() function in polly::ReportLoopHasNoExit 537 std::string ReportLoopHasMultipleExits::getMessage() const { getMessage() function in polly::ReportLoopHasMultipleExits 562 std::string ReportLoopOnlySomeLatches::getMessage() const { getMessage() function in polly::ReportLoopOnlySomeLatches 588 std::string ReportFuncCall::getMessage() const { getMessage() function in polly::ReportFuncCall 619 std::string ReportNonSimpleMemoryAccess::getMessage() const { getMessage() function in polly::ReportNonSimpleMemoryAccess 679 std::string ReportAlias::getMessage() const { getMessage() function in polly::ReportAlias 699 std::string ReportOther::getMessage() const { return "Unknown reject reason"; } getMessage() function in polly::ReportOther 719 std::string ReportIntToPtr::getMessage() const { getMessage() function in polly::ReportIntToPtr 741 std::string ReportAlloca::getMessage() const { getMessage() function in polly::ReportAlloca 765 std::string ReportUnknownInst::getMessage() const { getMessage() function in polly::ReportUnknownInst 787 std::string ReportEntry::getMessage() const { getMessage() function in polly::ReportEntry 813 std::string ReportUnprofitable::getMessage() const { getMessage() function in polly::ReportUnprofitable [all...] |
| /llvm-project/mlir/lib/Dialect/Transform/DebugExtension/ |
| H A D | DebugExtensionOps.cpp | 27 op->emitRemark() << getMessage(); in apply() 47 InFlightDiagnostic diag = ::emitRemark(value.getLoc()) << getMessage(); in apply() 59 if (getMessage()) in apply() 60 os << *getMessage() << " "; in apply()
|
| /llvm-project/llvm/unittests/AsmParser/ |
| H A D | AsmParserTest.cpp | 32 EXPECT_TRUE(Error.getMessage().empty()); in TEST() 59 EXPECT_TRUE(Error.getMessage().empty()); in TEST() 129 EXPECT_EQ(Error.getMessage(), "expected type"); in TEST() 132 EXPECT_EQ(Error.getMessage(), "floating point constant invalid for type"); in TEST() 135 EXPECT_EQ(Error.getMessage(), "expected a constant value"); in TEST() 138 EXPECT_EQ(Error.getMessage(), "expected end of string"); in TEST() 471 ASSERT_EQ(Error.getMessage(), "expected '(' here"); 477 ASSERT_EQ(Error.getMessage(), "expected '(' here");
|
| /llvm-project/clang-tools-extra/clangd/ |
| H A D | TidyProvider.cpp | 53 D.getLineNo(), D.getColumnNo(), D.getMessage()); in get() 57 D.getLineNo(), D.getColumnNo(), D.getMessage()); in get() 62 D.getLineNo(), D.getColumnNo(), D.getMessage()); in get()
|
| /llvm-project/llvm/lib/Remarks/ |
| H A D | RemarkParser.cpp | 123 const char *getMessage() const { return Err ? Err->c_str() : nullptr; }; in getMessage() function 170 return unwrap(Parser)->getMessage(); in LLVMRemarkParserGetErrorMessage()
|
| /llvm-project/mlir/test/lib/Dialect/Transform/ |
| H A D | TestTransformStateExtension.h | 30 StringRef getMessage() const { return message.getValue(); } in getMessage() function
|
| H A D | TestTransformDialectExtension.cpp | 52 if (Attribute message = getMessage()) in apply() 58 Attribute getMessage() { in getMessage() function in __anonbf2bd64a0111::TestTransformOp 74 if (getMessage()) in print() 75 printer << " " << getMessage(); in print() 267 << "extension present, " << extension->getMessage(); in apply()
|
| /llvm-project/clang-tools-extra/clang-tidy/modernize/ |
| H A D | UnaryStaticAssertCheck.cpp | 25 dyn_cast_if_present<StringLiteral>(MatchedDecl->getMessage()); in check()
|
| /llvm-project/llvm/unittests/TableGen/ |
| H A D | CodeExpanderTest.cpp | 45 EXPECT_EQ(Received[i].getMessage(), Expected[i].getMessage()); in ~RAIIDiagnosticChecker()
|
| /llvm-project/llvm/include/llvm/ProfileData/ |
| H A D | SymbolRemappingReader.h | 84 StringRef getMessage() const { return Message; } in getMessage() function
|
| /llvm-project/llvm/include/llvm/Object/ |
| H A D | Error.h | 71 const std::string &getMessage() const { return Msg; } in getMessage() function
|
| /llvm-project/clang-tools-extra/docs/clang-tidy/checks/bugprone/ |
| H A D | sizeof-expression.rst | 83 void getMessage(char* buf) { 113 void getMessage(char* dst) { 138 void getMessage(char* buf) {
|
| /llvm-project/clang/lib/Index/ |
| H A D | CommentToXML.cpp | 1012 if (DA->getMessage().empty()) in visitFullComment() 1016 appendToResultWithXMLEscaping(DA->getMessage()); in visitFullComment() 1021 if (UA->getMessage().empty()) in visitFullComment() 1025 appendToResultWithXMLEscaping(UA->getMessage()); in visitFullComment() 1060 StringRef DeprecationSummary = AA->getMessage(); in visitFullComment()
|
| /llvm-project/clang/unittests/Tooling/ |
| H A D | StencilTest.cpp | 123 EXPECT_THAT(Err.getMessage(), Matcher); in testError() 191 &StringError::getMessage, MessageMatcher))); in testFailure() 248 &StringError::getMessage, in TEST_F() 656 EXPECT_THAT(E.getMessage(), AllOf(HasSubstr("selected range"), in TEST()
|
| /llvm-project/mlir/lib/Tools/PDLL/Parser/ |
| H A D | Lexer.cpp | 93 diag.getMessage()); in Lexer() 96 note.getMessage()); in Lexer()
|
| /llvm-project/llvm/utils/ |
| H A D | revert_checker_test.py | 42 self.messages.append(record.getMessage())
|
| /llvm-project/clang/tools/libclang/ |
| H A D | CXStoredDiagnostic.cpp | 49 return cxstring::createRef(Diag.getMessage()); in getSpelling()
|
| /llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/ |
| H A D | BugReporter.h | 82 virtual std::string getMessage(const ExplodedNode *N) = 0; 102 std::string getMessage(const ExplodedNode *N) override; 535 return I->second->getMessage(N); in getCallStackMessage()
|
| /llvm-project/clang/lib/ARCMigrate/ |
| H A D | PlistReporter.cpp | 93 EmitString(o, D.getMessage()) << '\n'; in writeARCDiagsToPlist()
|
| /llvm-project/clang-tools-extra/clangd/unittests/ |
| H A D | ConfigTesting.h | 36 Out.Message = D.getMessage().str(); in callback()
|
| /llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | ArrayBoundCheckerV2.cpp | 92 std::string getMessage(PathSensitiveBugReport &BR) const; 472 return getMessage(BR); in createNoteTag() 476 std::string StateUpdateReporter::getMessage(PathSensitiveBugReport &BR) const { in getMessage() function in StateUpdateReporter
|
| /llvm-project/mlir/include/mlir/Tools/PDLL/AST/ |
| H A D | Diagnostic.h | 37 StringRef getMessage() const { return message; } in getMessage() function
|
| /llvm-project/clang/lib/Basic/Targets/ |
| H A D | RISCV.cpp | 280 OutputErrMsg << ErrMsg.getMessage(); in initFeatureMap() 339 OutputErrMsg << ErrMsg.getMessage(); in handleTargetFeatures()
|
| /llvm-project/clang/lib/Basic/ |
| H A D | SourceMgrAdapter.cpp | 98 StringRef Message = Diag.getMessage(); in handleDiag()
|