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

12

/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCheckerContext.h236 const FunctionDecl *getCalleeDecl(const CallExpr *CE) const;
243 const FunctionDecl *FunDecl = getCalleeDecl(CE);
252 const FunctionDecl *FunDecl = getCalleeDecl(CE);
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DCheckerContext.cpp22 const FunctionDecl *CheckerContext::getCalleeDecl(const CallExpr *CE) const { function in class:CheckerContext
H A DExprEngine.cpp923 const Decl *Callee = OCE->getCalleeDecl();
/freebsd-9.3-release/contrib/llvm/tools/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.cpp296 const FunctionDecl *FDecl = C.getCalleeDecl(CE);
373 const FunctionDecl *FDecl = C.getCalleeDecl(CE);
410 const FunctionDecl *FDecl = C.getCalleeDecl(CE);
613 const FunctionDecl *FDecl = C.getCalleeDecl(CE);
H A DMacOSKeychainAPIChecker.cpp284 const FunctionDecl *FD = C.getCalleeDecl(CE);
446 const FunctionDecl *FD = C.getCalleeDecl(CE);
H A DUnixAPIChecker.cpp333 const FunctionDecl *FD = C.getCalleeDecl(CE);
H A DBasicObjCFoundationChecks.cpp399 const FunctionDecl *FD = C.getCalleeDecl(CE);
513 const FunctionDecl *FD = C.getCalleeDecl(CE);
H A DMallocChecker.cpp576 const FunctionDecl *FD = C.getCalleeDecl(CE);
860 const FunctionDecl *FD = C.getCalleeDecl(CE);
863 FD = dyn_cast<FunctionDecl>(CE->getCalleeDecl());
H A DStreamChecker.cpp107 const FunctionDecl *FD = C.getCalleeDecl(CE);
H A DCStringChecker.cpp1860 const FunctionDecl *FDecl = C.getCalleeDecl(CE);
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DTransUnbridgedCasts.cpp420 FD = dyn_cast_or_null<FunctionDecl>(callE->getCalleeDecl()))
433 FD = dyn_cast_or_null<FunctionDecl>(callE->getCalleeDecl())) {
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExceptionSpec.cpp898 else if (CE->getCalleeDecl())
899 CT = canCalleeThrow(*this, E, CE->getCalleeDecl());
H A DSemaStmt.cpp218 if (const Decl *FD = CE->getCalleeDecl()) {
1779 FunctionDecl *D = dyn_cast<FunctionDecl>(CE->getCalleeDecl());
H A DSemaChecking.cpp2109 if (const NamedDecl *ND = dyn_cast_or_null<NamedDecl>(CE->getCalleeDecl())) {
6661 FunctionDecl *Fn = dyn_cast_or_null<FunctionDecl>(CE->getCalleeDecl());
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/AST/
H A DExprCXX.cpp747 cast<FunctionDecl>(getCalleeDecl())->getParamDecl(0)->getType();
769 return cast<FunctionDecl>(getCalleeDecl())->getLiteralIdentifier();
H A DExpr.cpp1161 Decl *CallExpr::getCalleeDecl() { function in class:CallExpr
1186 return dyn_cast_or_null<FunctionDecl>(getCalleeDecl());
2103 if (const Decl *FD = CE->getCalleeDecl()) {
3011 = dyn_cast_or_null<CXXMethodDecl>(E->getCalleeDecl())) {
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Analysis/
H A DUninitializedValues.cpp647 if (Decl *Callee = ce->getCalleeDecl()) {
H A DThreadSafety.cpp1706 NamedDecl *FunDecl = dyn_cast_or_null<NamedDecl>(Exp->getCalleeDecl());
2185 NamedDecl *D = dyn_cast_or_null<NamedDecl>(Exp->getCalleeDecl());
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGClass.cpp1033 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(MCE->getCalleeDecl());
1049 FunctionDecl *FD = dyn_cast<FunctionDecl>(CE->getCalleeDecl());
H A DCGExpr.cpp2885 const Decl *TargetDecl = E->getCalleeDecl();
H A DCGObjC.cpp1069 = dyn_cast_or_null<FunctionDecl>(call->getCalleeDecl()))
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/AST/
H A DExpr.h2170 Decl *getCalleeDecl();
2171 const Decl *getCalleeDecl() const {
2172 return const_cast<CallExpr*>(this)->getCalleeDecl();
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/ASTMatchers/
H A DASTMatchersInternal.h635 return matchesDecl(Node.getCalleeDecl(), Finder, Builder);

Completed in 455 milliseconds

12