Home
last modified time | relevance | path

Searched refs:ProgramPointTag (Results 1 – 14 of 14) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/
H A DProgramPoint.h39 class ProgramPointTag {
41 ProgramPointTag(void *tagKind = nullptr) : TagKind(tagKind) {} in TagKind()
42 virtual ~ProgramPointTag();
52 class SimpleProgramPointTag : public ProgramPointTag {
97 llvm::PointerIntPair<const ProgramPointTag *, 2, unsigned> Tag;
104 const ProgramPointTag *tag = nullptr)
118 const ProgramPointTag *tag = nullptr)
132 ProgramPoint withTag(const ProgramPointTag *tag) const { in withTag()
177 const ProgramPointTag *getTag() const { return Tag.getPointer(); } in getTag()
222 const ProgramPointTag *tag);
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCheckerContext.h167 const ProgramPointTag *Tag = nullptr) {
179 const ProgramPointTag *Tag = nullptr) {
187 const ProgramPointTag *Tag = nullptr) {
193 const ProgramPointTag *Tag = nullptr) {
207 const ProgramPointTag *Tag = nullptr) {
221 const ProgramPointTag *Tag = nullptr) {
237 const ProgramPointTag *Tag = nullptr) {
377 const ProgramPointTag *Tag = nullptr) {
H A DCoreEngine.h355 const ProgramPointTag *Tag = nullptr) {
361 const ProgramPointTag *Tag = nullptr) {
410 const ProgramPointTag *tag = nullptr,
420 const ProgramPointTag *tag = nullptr,
H A DExprEngine.h590 static std::pair<const ProgramPointTag *, const ProgramPointTag *>
689 const ProgramPointTag *tag = nullptr,
696 const ProgramPointTag *tag = nullptr);
761 const ProgramPointTag *tag,
H A DCallEvent.h54 class ProgramPointTag; variable
354 const ProgramPointTag *Tag = nullptr) const;
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DProgramPoint.cpp20 ProgramPointTag::~ProgramPointTag() {} in ~ProgramPointTag()
24 const ProgramPointTag *tag){ in getProgramPoint()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporter.h726 class NoteTag : public ProgramPointTag {
739 : ProgramPointTag(&Kind), Cb(std::move(Cb)), IsPrunable(IsPrunable) {} in NoteTag()
742 static bool classof(const ProgramPointTag *T) { in classof()
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountChecker.h353 const ProgramPointTag *Tag, CheckerContext &Ctx,
H A DRetainCountDiagnostics.cpp551 const ProgramPointTag *Tag = N->getLocation().getTag(); in VisitNode()
H A DRetainCountChecker.cpp1209 const ProgramPointTag *Tag, in handleAutoreleaseCounts()
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp2938 const ProgramPointTag *tag) { in evalStore()
2963 const ProgramPointTag *tag, in evalLoad()
3030 std::pair<const ProgramPointTag *, const ProgramPointTag*>
3059 const std::pair<const ProgramPointTag *, const ProgramPointTag*> &tags = in evalEagerlyAssumeBinOpBifurcation()
3190 if (const ProgramPointTag *Tag = OtherNode->getLocation().getTag()) in getNodeLabel()
H A DBugReporterVisitors.cpp2283 const std::pair<const ProgramPointTag *, const ProgramPointTag *> &Tags = in VisitNodeImpl()
2295 const ProgramPointTag *PreviousNodeTag = in VisitNodeImpl()
2306 const ProgramPointTag *CurrentNodeTag = PS->getTag(); in VisitNodeImpl()
H A DCallEvent.cpp307 const ProgramPointTag *Tag) const { in getProgramPoint()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/
H A DChecker.h492 class CheckerBase : public ProgramPointTag {