OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:BugType
(Results
1 - 6
of
6
) sorted by null
/external/chromium/chrome/browser/
bug_report_util.h
33
enum
BugType
{
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugType.h
1
//===---
BugType
.h - Bug Information Desciption ----------------*- C++ -*-===//
10
// This file defines
BugType
, a class representing a bug type.
28
class
BugType
{
34
BugType
(llvm::StringRef name, llvm::StringRef cat)
36
virtual ~
BugType
();
51
class BuiltinBug : public
BugType
{
55
:
BugType
(name, "Logic error"), desc(description) {}
58
:
BugType
(name, "Logic error"), desc(name) {}
PathDiagnostic.h
368
std::string
BugType
;
376
PathDiagnostic(llvm::StringRef
bugtype
, llvm::StringRef desc,
382
llvm::StringRef getBugType() const { return
BugType
; }
/external/clang/lib/StaticAnalyzer/Checkers/
DeadStoresChecker.cpp
107
const char*
BugType
= 0;
115
BugType
= "Dead initialization";
121
BugType
= "Dead increment";
123
if (!
BugType
)
BugType
= "Dead assignment";
134
BR.EmitBasicReport(
BugType
, "Dead store", msg, L, R);
/external/clang/lib/StaticAnalyzer/Core/
HTMLDiagnostics.cpp
253
const std::string&
BugType
= D.getBugType();
254
if (!
BugType
.empty())
255
os << "\n<!--
BUGTYPE
" <<
BugType
<< " -->\n";
BugReporter.cpp
16
#include "clang/StaticAnalyzer/Core/BugReporter/
BugType
.h"
[
all
...]
Completed in 1409 milliseconds