Home | History | Annotate | Download | only in Checkers

Lines Matching refs:Checker

1 //= CheckerDocumentation.cpp - Documentation checker ---------------*- C++ -*-//
10 // This checker lists all the checker callbacks and provides documentation for
11 // checker writers.
17 #include "clang/StaticAnalyzer/Core/Checker.h"
31 /// This checker documents the callback functions checkers can use to implement
37 class CheckerDocumentation : public Checker< check::PreStmt<ReturnStmt>,
154 /// up/reduce the checker state, which is important for reducing the overall
155 /// memory usage. Specifically, if a checker keeps symbol specific information
157 /// In addition, reporting a bug as soon as the checker becomes dead leads to
176 /// This callback should be used in cases when a checker needs to have a
198 /// state. This callback allows a checker to provide domain specific knowledge
202 /// and false otherwise. Note, that only one checker can evaluate a call. If
203 /// more than one checker claims that they can evaluate the same call the
228 /// \brief Called to determine if the checker currently needs to know if when
304 /// An AST traversal callback, which should only be used when the checker is