Home
last modified time | relevance | path

Searched refs:getDescription (Results 1 – 25 of 45) sorted by relevance

12

/freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/Refactoring/
H A DRefactoringActions.cpp22 StringRef getDescription() const override { in getDescription() function in clang::tooling::__anon14b5d9a30111::DeclNameOption
33 StringRef getDescription() const override { in getDescription() function in clang::tooling::__anon14b5d9a30111::ExtractRefactoring
51 StringRef getDescription() const override { in getDescription() function in clang::tooling::__anon14b5d9a30111::OldQualifiedNameOption
59 StringRef getDescription() const override { in getDescription() function in clang::tooling::__anon14b5d9a30111::NewQualifiedNameOption
67 StringRef getDescription() const override { in getDescription() function in clang::tooling::__anon14b5d9a30111::NewNameOption
78 StringRef getDescription() const override { in getDescription() function in clang::tooling::__anon14b5d9a30111::LocalRename
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-mca/
H A DPipelinePrinter.cpp23 if (!Region.getDescription().empty()) in printRegionHeader()
24 RegionName = Region.getDescription(); in printRegionHeader()
36 if (!Region.getDescription().empty()) in getJSONReportRegion()
37 RegionName = Region.getDescription(); in getJSONReportRegion()
H A DCodeRegion.h109 llvm::StringRef getDescription() const { return Description; } in getDescription() function
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DPass.cpp59 static std::string getDescription(const Module &M) { in getDescription() function
66 !Gate.shouldRunPass(this->getPassName(), getDescription(M)); in skipModule()
174 static std::string getDescription(const Function &F) { in getDescription() function
181 !Gate.shouldRunPass(this->getPassName(), getDescription(F))) in skipFunction()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachinePassRegistry.h63 StringRef getDescription() const { return Description; } in getDescription() function
111 Node->getDescription()); in Add()
152 Node->getDescription()); in initialize()
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DObjCAtSyncChecker.cpp49 BT_undef, BT_undef.getDescription(), N); in checkPreStmt()
69 BT_null, BT_null.getDescription(), N); in checkPreStmt()
H A DUndefinedArraySubscriptChecker.cpp52 auto R = std::make_unique<PathSensitiveBugReport>(BT, BT.getDescription(), N); in checkPreStmt()
H A DDereferenceChecker.cpp200 os << BT->getDescription(); in reportBug()
227 *BT, buf.empty() ? BT->getDescription() : buf.str(), N); in reportBug()
H A DUndefinedAssignmentChecker.cpp103 OS << BT.getDescription(); in checkBind()
H A DUndefBranchChecker.cpp103 auto R = std::make_unique<PathSensitiveBugReport>(BT, BT.getDescription(), N); in checkBranchCondition()
H A DReturnUndefChecker.cpp110 emitBug(C, BT_NullReference, BT_NullReference.getDescription(), RetE, in checkReference()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/
H A DRefactoringAction.h47 virtual StringRef getDescription() const = 0;
H A DRefactoringOption.h35 virtual StringRef getDescription() const = 0;
/freebsd-14.2/contrib/llvm-project/clang/lib/Basic/
H A DDiagnosticIDs.cpp130 StringRef getDescription() const { in getDescription() function
355 StringRef getDescription(unsigned DiagID) const { in getDescription() function in clang::diag::CustomDiagInfo
450 StringRef DiagnosticIDs::getDescription(unsigned DiagID) const { in getDescription() function in DiagnosticIDs
452 return Info->getDescription(); in getDescription()
454 return CustomDiagInfo->getDescription(DiagID); in getDescription()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DRegionPass.cpp279 static std::string getDescription(const Region &R) { in getDescription() function
287 !Gate.shouldRunPass(this->getPassName(), getDescription(R))) in skipRegion()
H A DLoopPass.cpp366 static std::string getDescription(const Loop &L) { in getDescription() function
377 !Gate.shouldRunPass(this->getPassName(), getDescription(*L))) in skipLoop()
H A DCallGraphSCCPass.cpp729 static std::string getDescription(const CallGraphSCC &SCC) { in getDescription() function
748 !Gate.shouldRunPass(this->getPassName(), getDescription(SCC)); in skipSCC()
/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/plugins/SampleAnalyzer/
H A DMainCallChecker.cpp40 std::make_unique<PathSensitiveBugReport>(*BT, BT->getDescription(), N); in checkPreStmt()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugType.h48 StringRef getDescription() const { return Description; } in getDescription() function
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountDiagnostics.h40 StringRef getDescription() const;
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DLangStandard.h88 const char *getDescription() const { return Description; } in getDescription() function
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DDeadArgumentElimination.h62 std::string getDescription() const { in getDescription() function
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/FileCheck/
H A DFileCheck.h105 std::string getDescription(StringRef Prefix) const;
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DCommandLine.cpp2107 if (!shouldPrintOption(Name, getDescription(i), O)) in getOptionWidth()
2146 StringRef Description = getDescription(i); in printOptionInfo()
2167 Option::printHelpStr(getDescription(i), GlobalWidth, Option.size() + 8); in printOptionInfo()
2330 if (!S.second->getDescription().empty()) { in printSubCommands()
2332 outs() << " - " << S.second->getDescription(); in printSubCommands()
2373 if (!Sub->getDescription().empty()) { in printHelp()
2375 << "': " << Sub->getDescription() << "\n\n"; in printHelp()
2478 if (!Category->getDescription().empty()) in printOptions()
2479 outs() << Category->getDescription() << "\n\n"; in printOptions()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFExpression.h87 const Description &getDescription() const { return Desc; } in getDescription() function

12