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

12

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCheckerContext.h295 const FunctionDecl *getCalleeDecl(const CallExpr *CE) const;
302 const FunctionDecl *FunDecl = getCalleeDecl(CE);
311 const FunctionDecl *FunDecl = getCalleeDecl(CE);
/freebsd-11-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-11-stable/contrib/llvm-project/clang/include/clang/Analysis/
H A DAnyCall.h67 D = CE->getCalleeDecl();
/freebsd-11-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-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountDiagnostics.cpp224 FD = dyn_cast<FunctionDecl>(CE->getCalleeDecl());
226 if (const auto *MD = dyn_cast<CXXMethodDecl>(CE->getCalleeDecl())) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DUnixAPIChecker.cpp105 const FunctionDecl *FD = C.getCalleeDecl(CE);
461 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 DGenericTaintChecker.cpp111 const FunctionDecl *FDecl = C.getCalleeDecl(CE);
793 const FunctionDecl *FDecl = C.getCalleeDecl(CE);
H A DMallocChecker.cpp1059 const FunctionDecl *FD = C.getCalleeDecl(CE);
1640 const FunctionDecl *FD = C.getCalleeDecl(CE);
1643 FD = dyn_cast<FunctionDecl>(CE->getCalleeDecl());
H A DBasicObjCFoundationChecks.cpp430 const FunctionDecl *FD = C.getCalleeDecl(CE);
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCall.h62 const GlobalDecl getCalleeDecl() const { return CalleeDecl; } function in class:clang::CodeGen::CGCalleeInfo
H A DCGCall.cpp1851 const Decl *TargetDecl = CalleeInfo.getCalleeDecl().getDecl();
1988 GetCPUAndFeaturesAttributes(CalleeInfo.getCalleeDecl(), FuncAttrs);
3831 const Decl *TargetDecl = Callee.getAbstractInfo().getCalleeDecl().getDecl();
H A DCGClass.cpp1163 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(MCE->getCalleeDecl());
1177 FunctionDecl *FD = dyn_cast<FunctionDecl>(CE->getCalleeDecl());
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DReachableCode.cpp216 dyn_cast_or_null<FunctionDecl>(cast<CallExpr>(S)->getCalleeDecl());
H A DUninitializedValues.cpp742 if (Decl *Callee = ce->getCalleeDecl()) {
H A DThreadSafety.cpp1514 auto *FunDecl = dyn_cast_or_null<NamedDecl>(Exp->getCalleeDecl());
2088 auto *D = dyn_cast_or_null<NamedDecl>(Exp->getCalleeDecl());
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DExprCXX.cpp968 cast<FunctionDecl>(getCalleeDecl())->getParamDecl(0)->getType();
990 return cast<FunctionDecl>(getCalleeDecl())->getLiteralIdentifier();
H A DExpr.cpp1527 const Decl *D = getCalleeDecl();
2560 if (const Decl *FD = CE->getCalleeDecl()) {
3482 const Decl *FD = cast<CallExpr>(this)->getCalleeDecl();
3699 = dyn_cast_or_null<const CXXMethodDecl>(E->getCalleeDecl())) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp193 if (!CE || !CE->getCalleeDecl() ||
194 CE->getCalleeDecl()->getCanonicalDecl() != FD)
H A DSemaExceptionSpec.cpp1156 CT = canCalleeThrow(*this, CE, CE->getCalleeDecl());
H A DSemaCoroutine.cpp455 S.Diag(AwaitSuspend->getCalleeDecl()->getLocation(),
H A DSemaStmt.cpp294 if (const Decl *FD = CE->getCalleeDecl()) {
2039 FunctionDecl *D = dyn_cast<FunctionDecl>(CE->getCalleeDecl());
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DExpr.h2675 Decl *getCalleeDecl() { return getCallee()->getReferencedDeclOfCallee(); }
2676 const Decl *getCalleeDecl() const {
2682 return dyn_cast_or_null<FunctionDecl>(getCalleeDecl());
2685 return dyn_cast_or_null<FunctionDecl>(getCalleeDecl());
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchersInternal.h871 return matchesDecl(Node.getCalleeDecl(), Finder, Builder);

Completed in 488 milliseconds

12