Home
last modified time | relevance | path

Searched refs:FnCheck (Results 1 – 8 of 8) sorted by relevance

/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DDebugContainerModeling.cpp40 typedef void (DebugContainerModeling::*FnCheck)(const CallExpr *, typedef in __anon3f92c5be0111::DebugContainerModeling
43 CallDescriptionMap<FnCheck> Callbacks = {
70 const FnCheck *Handler = Callbacks.lookup(Call); in evalCall()
H A DDebugIteratorModeling.cpp41 typedef void (DebugIteratorModeling::*FnCheck)(const CallExpr *, typedef in __anonf37883a50111::DebugIteratorModeling
44 CallDescriptionMap<FnCheck> Callbacks = {
73 const FnCheck *Handler = Callbacks.lookup(Call); in evalCall()
H A DSTLAlgorithmModeling.cpp32 using FnCheck = bool (STLAlgorithmModeling::*)(CheckerContext &, typedef in __anon0599f2ee0111::STLAlgorithmModeling
35 const CallDescriptionMap<FnCheck> Callbacks = {
75 const FnCheck *Handler = Callbacks.lookup(Call); in evalCall()
H A DPthreadLockChecker.cpp85 typedef void (PthreadLockChecker::*FnCheck)(const CallEvent &Call, typedef in __anoned0ba6cb0111::PthreadLockChecker
88 CallDescriptionMap<FnCheck> PThreadCallbacks = {
128 CallDescriptionMap<FnCheck> FuchsiaCallbacks = {
150 CallDescriptionMap<FnCheck> C11Callbacks = {
270 if (const FnCheck *Callback = PThreadCallbacks.lookup(Call)) in REGISTER_LIST_WITH_PROGRAMSTATE()
272 else if (const FnCheck *Callback = FuchsiaCallbacks.lookup(Call)) in REGISTER_LIST_WITH_PROGRAMSTATE()
274 else if (const FnCheck *Callback = C11Callbacks.lookup(Call)) in REGISTER_LIST_WITH_PROGRAMSTATE()
H A DExprInspectionChecker.cpp57 typedef void (ExprInspectionChecker::*FnCheck)(const CallExpr *, typedef in __anon1ece01d50111::ExprInspectionChecker
89 FnCheck Handler = in REGISTER_SET_WITH_PROGRAMSTATE()
90 llvm::StringSwitch<FnCheck>(C.getCalleeName(CE)) in REGISTER_SET_WITH_PROGRAMSTATE()
H A DCheckSecuritySyntaxOnly.cpp98 typedef void (WalkAST::*FnCheck)(const CallExpr *, const FunctionDecl *); typedef in __anon1e8554840111::WalkAST
148 FnCheck evalFunction = llvm::StringSwitch<FnCheck>(Name) in VisitCallExpr()
H A DCStringChecker.cpp134 using FnCheck = std::function<void(const CStringChecker *, CheckerContext &, typedef in __anonb92275340111::CStringChecker
137 CallDescriptionMap<FnCheck> Callbacks = {
184 FnCheck identifyCall(const CallEvent &Call, CheckerContext &C) const;
2359 CStringChecker::FnCheck CStringChecker::identifyCall(const CallEvent &Call, in identifyCall()
2384 const FnCheck *Callback = Callbacks.lookup(Call); in identifyCall()
2392 FnCheck Callback = identifyCall(Call, C); in evalCall()
H A DStreamChecker.cpp165 using FnCheck = std::function<void(const StreamChecker *, const FnDescription *, typedef
172 FnCheck PreFn;
173 FnCheck EvalFn;