OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:BugType
(Results
1 - 4
of
4
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugType.h
1
//===---
BugType
.h - Bug Information Description ---------------*- C++ -*-===//
9
// This file defines
BugType
, a class representing a bug type.
29
class
BugType
{
40
BugType
(CheckerNameRef CheckerName, StringRef Name, StringRef Cat,
44
BugType
(const CheckerBase *Checker, StringRef Name, StringRef Cat,
48
virtual ~
BugType
() = default;
55
// In case the
BugType
object is initialized in the checker's ctor
69
class BuiltinBug : public
BugType
{
75
:
BugType
(checker, name, categories::LogicError), desc(description) {}
79
:
BugType
(checker, name, categories::LogicError), desc(description) {
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
DeadStoresChecker.cpp
215
const char *
BugType
= nullptr;
221
BugType
= "Dead initialization";
245
BugType
= "Dead increment";
248
if (!
BugType
)
BugType
= "Dead assignment";
256
BugType
= "Dead nested assignment";
264
BR.EmitBasicReport(AC->getDecl(), Checker,
BugType
, categories::UnusedCode,
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
HTMLDiagnostics.cpp
585
StringRef
BugType
= D.getBugType();
586
if (!
BugType
.empty())
587
os << "\n<!--
BUGTYPE
" <<
BugType
<< " -->\n";
/src/external/apache2/llvm/dist/clang/include/clang/Analysis/
PathDiagnostic.h
769
std::string
BugType
;
792
StringRef
bugtype
, StringRef verboseDesc, StringRef shortDesc,
841
StringRef getBugType() const { return
BugType
; }
Completed in 30 milliseconds
Indexes created Mon Mar 02 05:31:46 UTC 2026