Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DDebugContainerModeling.cpp39 typedef void (DebugContainerModeling::*FnCheck)(const CallExpr *, typedef in __anoned3de4bb0111::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 __anon3e8d37020111::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 __anona3072eab0111::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 __anon658ccf480111::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 __anon69e2b5320111::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 __anon819453210111::WalkAST
148 FnCheck evalFunction = llvm::StringSwitch<FnCheck>(Name) in VisitCallExpr()
H A DStreamChecker.cpp162 using FnCheck = std::function<void(const StreamChecker *, const FnDescription *, typedef
169 FnCheck PreFn;
170 FnCheck EvalFn;
H A DCStringChecker.cpp118 typedef void (CStringChecker::*FnCheck)(CheckerContext &, typedef in __anon6bf0e7310111::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()