Searched refs:FnCheck (Results 1 – 6 of 6) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
H A D | DebugContainerModeling.cpp | 41 typedef void (DebugContainerModeling::*FnCheck)(const CallExpr *, typedef in __anon3bf1f1870111::DebugContainerModeling 44 CallDescriptionMap<FnCheck> Callbacks = { 63 const FnCheck *Handler = Callbacks.lookup(Call); in evalCall()
|
H A D | DebugIteratorModeling.cpp | 42 typedef void (DebugIteratorModeling::*FnCheck)(const CallExpr *, typedef in __anonb54cda4e0111::DebugIteratorModeling 45 CallDescriptionMap<FnCheck> Callbacks = { 66 const FnCheck *Handler = Callbacks.lookup(Call); in evalCall()
|
H A D | STLAlgorithmModeling.cpp | 32 using FnCheck = bool (STLAlgorithmModeling::*)(CheckerContext &, typedef in __anon0b7998770111::STLAlgorithmModeling 35 const CallDescriptionMap<FnCheck> Callbacks = { 96 const FnCheck *Handler = Callbacks.lookup(Call); in evalCall()
|
H A D | PthreadLockChecker.cpp | 85 typedef void (PthreadLockChecker::*FnCheck)(const CallEvent &Call, typedef in __anonba8256140111::PthreadLockChecker 88 CallDescriptionMap<FnCheck> PThreadCallbacks = { 149 CallDescriptionMap<FnCheck> FuchsiaCallbacks = { 181 CallDescriptionMap<FnCheck> C11Callbacks = { 299 if (const FnCheck *Callback = PThreadCallbacks.lookup(Call)) in REGISTER_LIST_WITH_PROGRAMSTATE() 301 else if (const FnCheck *Callback = FuchsiaCallbacks.lookup(Call)) in REGISTER_LIST_WITH_PROGRAMSTATE() 303 else if (const FnCheck *Callback = C11Callbacks.lookup(Call)) in REGISTER_LIST_WITH_PROGRAMSTATE()
|
H A D | CStringChecker.cpp | 127 using FnCheck = std::function<void(const CStringChecker *, CheckerContext &, typedef in __anonfd7ae7fd0111::CStringChecker 130 CallDescriptionMap<FnCheck> Callbacks = { 199 FnCheck identifyCall(const CallEvent &Call, CheckerContext &C) const; 2670 CStringChecker::FnCheck CStringChecker::identifyCall(const CallEvent &Call, in identifyCall() 2695 const FnCheck *Callback = Callbacks.lookup(Call); in identifyCall() 2703 FnCheck Callback = identifyCall(Call, C); in evalCall()
|
H A D | StreamChecker.cpp | 195 using FnCheck = std::function<void(const StreamChecker *, const FnDescription *, typedef 205 FnCheck PreFn; 206 FnCheck EvalFn;
|