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

12

/external/clang/lib/StaticAnalyzer/Core/
H A DCheckerContext.cpp22 const FunctionDecl *CheckerContext::getCalleeDecl(const CallExpr *CE) const { function in class:CheckerContext
/external/clang/lib/StaticAnalyzer/Checkers/
H A DChrootChecker.cpp65 const FunctionDecl *FD = C.getCalleeDecl(CE);
125 const FunctionDecl *FD = C.getCalleeDecl(CE);
H A DBuiltinFunctionChecker.cpp35 const FunctionDecl *FD = C.getCalleeDecl(CE);
H A DGenericTaintChecker.cpp295 const FunctionDecl *FDecl = C.getCalleeDecl(CE);
372 const FunctionDecl *FDecl = C.getCalleeDecl(CE);
409 const FunctionDecl *FDecl = C.getCalleeDecl(CE);
612 const FunctionDecl *FDecl = C.getCalleeDecl(CE);
H A DMacOSKeychainAPIChecker.cpp282 const FunctionDecl *FD = C.getCalleeDecl(CE);
452 const FunctionDecl *FD = C.getCalleeDecl(CE);
H A DUnixAPIChecker.cpp352 const FunctionDecl *FD = C.getCalleeDecl(CE);
H A DStreamChecker.cpp109 const FunctionDecl *FD = C.getCalleeDecl(CE);
H A DBasicObjCFoundationChecks.cpp432 const FunctionDecl *FD = C.getCalleeDecl(CE);
549 const FunctionDecl *FD = C.getCalleeDecl(CE);
H A DMallocChecker.cpp742 const FunctionDecl *FD = C.getCalleeDecl(CE);
1197 const FunctionDecl *FD = C.getCalleeDecl(CE);
1200 FD = dyn_cast<FunctionDecl>(CE->getCalleeDecl());
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCheckerContext.h267 const FunctionDecl *getCalleeDecl(const CallExpr *CE) const;
274 const FunctionDecl *FunDecl = getCalleeDecl(CE);
283 const FunctionDecl *FunDecl = getCalleeDecl(CE);
/external/clang/lib/ARCMigrate/
H A DTransUnbridgedCasts.cpp421 FD = dyn_cast_or_null<FunctionDecl>(callE->getCalleeDecl()))
434 FD = dyn_cast_or_null<FunctionDecl>(callE->getCalleeDecl())) {
/external/clang/include/clang/CodeGen/
H A DCGFunctionInfo.h532 const Decl *getCalleeDecl() { return CalleeDecl; } function in class:clang::CodeGen::ABIArgInfo::CGCalleeInfo
/external/clang/lib/Sema/
H A DSemaExceptionSpec.cpp980 else if (CE->getCalleeDecl())
981 CT = canCalleeThrow(*this, E, CE->getCalleeDecl());
H A DAnalysisBasedWarnings.cpp175 if (!CE || !CE->getCalleeDecl() ||
176 CE->getCalleeDecl()->getCanonicalDecl() != FD)
H A DSemaStmt.cpp251 if (const Decl *FD = CE->getCalleeDecl()) {
1886 FunctionDecl *D = dyn_cast<FunctionDecl>(CE->getCalleeDecl());
H A DSemaChecking.cpp198 const Decl *TargetDecl = CE->getCalleeDecl();
2791 << cast<FunctionDecl>(TheCall->getCalleeDecl())->getIdentifier();
3149 if (const NamedDecl *ND = dyn_cast_or_null<NamedDecl>(CE->getCalleeDecl())) {
8899 FunctionDecl *Fn = dyn_cast_or_null<FunctionDecl>(CE->getCalleeDecl());
/external/clang/lib/Analysis/
H A DReachableCode.cpp184 dyn_cast_or_null<FunctionDecl>(cast<CallExpr>(S)->getCalleeDecl());
H A DUninitializedValues.cpp707 if (Decl *Callee = ce->getCalleeDecl()) {
H A DThreadSafety.cpp1410 NamedDecl *FunDecl = dyn_cast_or_null<NamedDecl>(Exp->getCalleeDecl());
1966 NamedDecl *D = dyn_cast_or_null<NamedDecl>(Exp->getCalleeDecl());
/external/clang/lib/AST/
H A DExpr.cpp1197 Decl *CallExpr::getCalleeDecl() { function in class:CallExpr
1222 return dyn_cast_or_null<FunctionDecl>(getCalleeDecl());
2203 if (const Decl *FD = CE->getCalleeDecl()) {
3025 const Decl *FD = cast<CallExpr>(this)->getCalleeDecl();
3228 = dyn_cast_or_null<const CXXMethodDecl>(E->getCalleeDecl())) {
H A DExprCXX.cpp739 cast<FunctionDecl>(getCalleeDecl())->getParamDecl(0)->getType();
761 return cast<FunctionDecl>(getCalleeDecl())->getLiteralIdentifier();
/external/clang/lib/CodeGen/
H A DCGClass.cpp1261 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(MCE->getCalleeDecl());
1275 FunctionDecl *FD = dyn_cast<FunctionDecl>(CE->getCalleeDecl());
H A DCGCall.cpp1453 const Decl *TargetDecl = CalleeInfo.getCalleeDecl();
3583 const Decl *TargetDecl = CalleeInfo.getCalleeDecl();
3659 const Decl *TargetDecl = CalleeInfo.getCalleeDecl();
/external/clang/include/clang/ASTMatchers/
H A DASTMatchersInternal.h711 return matchesDecl(Node.getCalleeDecl(), Finder, Builder);
/external/clang/include/clang/AST/
H A DExpr.h2229 Decl *getCalleeDecl();
2230 const Decl *getCalleeDecl() const {
2231 return const_cast<CallExpr*>(this)->getCalleeDecl();

Completed in 456 milliseconds

12