Home
last modified time | relevance | path

Searched refs:evalFunction (Results 1 – 3 of 3) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DGenericTaintChecker.cpp318 FnCheck evalFunction = llvm::StringSwitch<FnCheck>(Name) in addSourcesPre() local
322 if (evalFunction) in addSourcesPre()
323 State = (this->*evalFunction)(CE, C); in addSourcesPre()
382 FnCheck evalFunction = in addSourcesPost() local
400 if (evalFunction) in addSourcesPost()
401 State = (this->*evalFunction)(CE, C); in addSourcesPost()
H A DCheckSecuritySyntaxOnly.cpp140 FnCheck evalFunction = llvm::StringSwitch<FnCheck>(Name) in VisitCallExpr() local
167 if (evalFunction) in VisitCallExpr()
168 (this->*evalFunction)(CE, FD); in VisitCallExpr()
H A DCStringChecker.cpp2336 FnCheck evalFunction = identifyCall(CE, C); in evalCall() local
2339 if (!evalFunction) in evalCall()
2343 (this->*evalFunction)(C, CE); in evalCall()