Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DDebugContainerModeling.cpp39 typedef void (DebugContainerModeling::*FnCheck)(const CallExpr *, typedef in __anon1942b8720111::DebugContainerModeling
42 CallDescriptionMap<FnCheck> Callbacks = {
69 const FnCheck *Handler = Callbacks.lookup(Call); in evalCall()
H A DDebugIteratorModeling.cpp40 typedef void (DebugIteratorModeling::*FnCheck)(const CallExpr *, typedef in __anon20daefd90111::DebugIteratorModeling
43 CallDescriptionMap<FnCheck> Callbacks = {
72 const FnCheck *Handler = Callbacks.lookup(Call); in evalCall()
H A DSTLAlgorithmModeling.cpp31 using FnCheck = bool (STLAlgorithmModeling::*)(CheckerContext &, typedef in __anon3585a8a20111::STLAlgorithmModeling
34 const CallDescriptionMap<FnCheck> Callbacks = {
74 const FnCheck *Handler = Callbacks.lookup(Call); in evalCall()
H A DPthreadLockChecker.cpp84 typedef void (PthreadLockChecker::*FnCheck)(const CallEvent &Call, typedef in __anon1b665f7f0111::PthreadLockChecker
87 CallDescriptionMap<FnCheck> PThreadCallbacks = {
127 CallDescriptionMap<FnCheck> FuchsiaCallbacks = {
149 CallDescriptionMap<FnCheck> C11Callbacks = {
269 if (const FnCheck *Callback = PThreadCallbacks.lookup(Call)) in REGISTER_LIST_WITH_PROGRAMSTATE()
271 else if (const FnCheck *Callback = FuchsiaCallbacks.lookup(Call)) in REGISTER_LIST_WITH_PROGRAMSTATE()
273 else if (const FnCheck *Callback = C11Callbacks.lookup(Call)) in REGISTER_LIST_WITH_PROGRAMSTATE()
H A DExprInspectionChecker.cpp54 typedef void (ExprInspectionChecker::*FnCheck)(const CallExpr *, typedef in __anon4c306e090111::ExprInspectionChecker
85 FnCheck Handler = in REGISTER_SET_WITH_PROGRAMSTATE()
86 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 __anon2e339db80111::WalkAST
148 FnCheck evalFunction = llvm::StringSwitch<FnCheck>(Name) in VisitCallExpr()
H A DStreamChecker.cpp150 using FnCheck = std::function<void(const StreamChecker *, const FnDescription *, typedef
157 FnCheck PreFn;
158 FnCheck EvalFn;
H A DCStringChecker.cpp118 typedef void (CStringChecker::*FnCheck)(CheckerContext &, typedef in __anonf9b4f3e80111::CStringChecker
120 CallDescriptionMap<FnCheck> Callbacks = {
151 FnCheck identifyCall(const CallEvent &Call, CheckerContext &C) const;
2264 CStringChecker::FnCheck CStringChecker::identifyCall(const CallEvent &Call, in identifyCall()
2290 const FnCheck *Callback = Callbacks.lookup(Call); in identifyCall()
2298 FnCheck Callback = identifyCall(Call, C); in evalCall()