Home
last modified time | relevance | path

Searched refs:ErrorText (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
H A DMPIBugReporter.cpp29 std::string ErrorText; in reportDoubleNonblocking() local
30 ErrorText = "Double nonblocking on request " + in reportDoubleNonblocking()
34 *DoubleNonblockingBugType, ErrorText, ExplNode); in reportDoubleNonblocking()
53 std::string ErrorText{"Request " + RequestRegion->getDescriptiveName() + in reportMissingWait() local
57 ErrorText, ExplNode); in reportMissingWait()
73 std::string ErrorText{"Request " + RequestRegion->getDescriptiveName() + in reportUnmatchedWait() local
77 ErrorText, ExplNode); in reportUnmatchedWait()
109 return std::make_shared<PathDiagnosticEventPiece>(L, ErrorText); in VisitNode()
H A DMPIBugReporter.h84 : RequestRegion(MemoryRegion), ErrorText(ErrText) {} in RequestNodeVisitor()
99 std::string ErrorText; variable
/llvm-project-15.0.7/clang-tools-extra/unittests/clang-tidy/
H A DClangTidyTest.h140 std::string ErrorText;
142 ErrorText += Error.Message.Message + "\n";
144 llvm::report_fatal_error(llvm::Twine(ErrorText));
/llvm-project-15.0.7/clang/unittests/AST/
H A DASTImporterFixtures.h278 std::string ErrorText; in testImport() local
280 [&ErrorText](const ASTImportError &Err) { in testImport()
281 ErrorText = Err.message(); in testImport()
284 << "Import failed, error: \"" << ErrorText << "\"!"; in testImport()
/llvm-project-15.0.7/clang/lib/ASTMatchers/Dynamic/
H A DParser.cpp291 StringRef ErrorText = Code; in consumeStringLiteral() local
296 Error->addError(Range, Error->ET_ParserStringError) << ErrorText; in consumeStringLiteral()