Searched refs:checkers (Results 1 - 7 of 7) sorted by relevance

/freebsd-12-stable/usr.bin/dtc/
H A Dchecking.cc198 checkers.insert(std::make_pair(string(name),
207 checkers.insert(std::make_pair(string(name),
213 while (checkers.begin() != checkers.end())
215 delete checkers.begin()->second;
216 checkers.erase(checkers.begin());
236 checkers.insert(std::make_pair(string("deleted-nodes"),
244 for (auto &i : checkers)
258 auto checker = checkers
[all...]
H A Dchecking.hh47 * Base class for all checkers. This will visit the entire tree and perform
62 * and for enabling / disabling specific checkers from the command
115 * the matching name. To define simple property checkers, just subclass this
257 * The enabled checkers, indexed by their names. The name is used when
258 * disabling checkers from the command line. When this manager runs,
259 * it will only run the checkers from this map.
261 std::unordered_map<std::string, checker*> checkers; member in class:dtc::fdt::checking::check_manager
263 * The disabled checkers. Moving checkers to this list disables them,
284 * Delete all of the checkers tha
[all...]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanCallUserExpression.cpp104 DynamicCheckerFunctions *checkers = local
108 if (checkers && checkers->DoCheckersExplainStop(addr, s))
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCheckerManager.cpp73 // Functions for running checkers for AST traversing..
81 CachedDeclCheckers *checkers = nullptr; local
84 checkers = &(CCI->second);
86 // Find the checkers that should run for this Decl and cache them.
87 checkers = &CachedDeclCheckersMap[DeclKind];
90 checkers->push_back(info.CheckFn);
93 assert(checkers);
94 for (const auto &checker : *checkers)
107 // Functions for running checkers for path-sensitive checking.
161 CheckStmtContext(bool isPreVisit, const CheckersTy &checkers, argument
206 CheckObjCMessageContext(ObjCMessageVisitKind visitKind, const CheckersTy &checkers, const ObjCMethodCall &msg, ExprEngine &eng, bool wasInlined) argument
246 auto &checkers = getObjCMessageCheckers(visitKind); local
277 CheckCallContext(bool isPreVisit, const CheckersTy &checkers, const CallEvent &call, ExprEngine &eng, bool wasInlined) argument
323 CheckLocationContext(const CheckersTy &checkers, SVal loc, bool isLoad, const Stmt *NodeEx, const Stmt *BoundEx, ExprEngine &eng) argument
373 CheckBindContext(const CheckersTy &checkers, SVal loc, SVal val, const Stmt *s, ExprEngine &eng, const ProgramPoint &pp) argument
475 CheckBranchConditionContext(const CheckersTy &checkers, const Stmt *Cond, ExprEngine &eng) argument
560 CheckDeadSymbolsContext(const CheckersTy &checkers, SymbolReaper &sr, const Stmt *s, ExprEngine &eng, ProgramPoint::Kind K) argument
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/utils/TableGen/
H A DClangSACheckersEmitter.cpp1 //=- ClangSACheckersEmitter.cpp - Generate Clang SA checkers tables -*- C++ -*-
9 // This tablegen backend emits Clang Static Analyzer checkers tables.
179 std::vector<Record*> checkers = Records.getAllDerivedDefinitions("Checker"); local
216 // load checkers runtime, we can't use template hackery for
243 // Emit checkers.
254 for (const Record *checker : checkers) {
268 for (const Record *Checker : checkers) {
291 // load checkers runtime, we can't use template hackery for
302 for (const Record *Checker : checkers) {
/freebsd-12-stable/share/mk/
H A Dbsd.clang-analyze.mk8 # CLANG_ANALYZE_CHECKERS Which checkers to run for all sources.
10 # CLANG_ANALYZE_CXX_CHECKERS Which checkers to run for C++ sources.
/freebsd-12-stable/lib/clang/libclang/
H A DMakefile971 ${CLANG_TBLGEN} -gen-clang-sa-checkers \

Completed in 66 milliseconds