Searched refs:getCalleeDecl (Results 1 - 25 of 33) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCheckerContext.h309 const FunctionDecl *getCalleeDecl(const CallExpr *CE) const;
316 const FunctionDecl *FunDecl = getCalleeDecl(CE);
325 const FunctionDecl *FunDecl = getCalleeDecl(CE);
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCheckerContext.cpp21 const FunctionDecl *CheckerContext::getCalleeDecl(const CallExpr *CE) const { function in class:CheckerContext
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Analysis/
H A DAnyCall.h70 D = CE->getCalleeDecl();
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountDiagnostics.cpp225 FD = dyn_cast<FunctionDecl>(CE->getCalleeDecl());
227 if (const auto *MD = dyn_cast<CXXMethodDecl>(CE->getCalleeDecl())) {
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DUnixAPIChecker.cpp106 const FunctionDecl *FD = C.getCalleeDecl(CE);
462 const FunctionDecl *FD = C.getCalleeDecl(CE);
H A DMacOSKeychainAPIChecker.cpp254 const FunctionDecl *FD = C.getCalleeDecl(CE);
405 const FunctionDecl *FD = C.getCalleeDecl(CE);
H A DPointerArithChecker.cpp220 const FunctionDecl *FD = C.getCalleeDecl(CE);
H A DBasicObjCFoundationChecks.cpp430 const FunctionDecl *FD = C.getCalleeDecl(CE);
H A DMallocChecker.cpp1158 const FunctionDecl *FD = C.getCalleeDecl(CE);
1243 const FunctionDecl *FD = C.getCalleeDecl(CE);
/freebsd-13-stable/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransUnbridgedCasts.cpp418 FD = dyn_cast_or_null<FunctionDecl>(callE->getCalleeDecl()))
431 FD = dyn_cast_or_null<FunctionDecl>(callE->getCalleeDecl())) {
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCall.h63 const GlobalDecl getCalleeDecl() const { return CalleeDecl; } function in class:clang::CodeGen::CGCalleeInfo
H A DCGCall.cpp1914 const Decl *TargetDecl = CalleeInfo.getCalleeDecl().getDecl();
2070 GetCPUAndFeaturesAttributes(CalleeInfo.getCalleeDecl(), FuncAttrs);
4249 const Decl *TargetDecl = Callee.getAbstractInfo().getCalleeDecl().getDecl();
H A DCGClass.cpp1185 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(MCE->getCalleeDecl());
1199 FunctionDecl *FD = dyn_cast<FunctionDecl>(CE->getCalleeDecl());
H A DCGStmt.cpp1755 auto *FD = dyn_cast_or_null<FunctionDecl>(Call->getCalleeDecl());
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaCoroutine.cpp397 S.Diag(cast<CallExpr>(JustAddress)->getCalleeDecl()->getLocation(),
462 S.Diag(AwaitSuspend->getCalleeDecl()->getLocation(),
651 checkDeclNoexcept(cast<CallExpr>(E)->getCalleeDecl());
H A DAnalysisBasedWarnings.cpp193 if (!CE || !CE->getCalleeDecl() ||
194 CE->getCalleeDecl()->getCanonicalDecl() != FD)
H A DSemaExceptionSpec.cpp1163 CT = canCalleeThrow(*this, CE, CE->getCalleeDecl());
H A DSemaStmt.cpp294 if (const Decl *FD = CE->getCalleeDecl()) {
2054 FunctionDecl *D = dyn_cast<FunctionDecl>(CE->getCalleeDecl());
/freebsd-13-stable/contrib/llvm-project/clang/lib/Analysis/
H A DReachableCode.cpp216 dyn_cast_or_null<FunctionDecl>(cast<CallExpr>(S)->getCalleeDecl());
H A DUninitializedValues.cpp723 if (Decl *Callee = ce->getCalleeDecl()) {
H A DThreadSafety.cpp1514 auto *FunDecl = dyn_cast_or_null<NamedDecl>(Exp->getCalleeDecl());
2087 auto *D = dyn_cast_or_null<NamedDecl>(Exp->getCalleeDecl());
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DExprCXX.cpp891 cast<FunctionDecl>(getCalleeDecl())->getParamDecl(0)->getType();
913 return cast<FunctionDecl>(getCalleeDecl())->getLiteralIdentifier();
H A DExpr.cpp1469 const Decl *D = getCalleeDecl();
2497 if (const Decl *FD = CE->getCalleeDecl()) {
3474 const Decl *FD = cast<CallExpr>(this)->getCalleeDecl();
3695 = dyn_cast_or_null<const CXXMethodDecl>(E->getCalleeDecl())) {
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DExpr.h2895 Decl *getCalleeDecl() { return getCallee()->getReferencedDeclOfCallee(); }
2896 const Decl *getCalleeDecl() const {
2902 return dyn_cast_or_null<FunctionDecl>(getCalleeDecl());
2905 return dyn_cast_or_null<FunctionDecl>(getCalleeDecl());
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchersInternal.h879 return matchesDecl(Node.getCalleeDecl(), Finder, Builder);

Completed in 255 milliseconds

12