/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
D | CheckerContext.h | 240 const FunctionDecl *getCalleeDecl(const CallExpr *CE) const; 247 const FunctionDecl *FunDecl = getCalleeDecl(CE); in getCalleeIdentifier() 256 const FunctionDecl *FunDecl = getCalleeDecl(CE); in getCalleeName()
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | ChrootChecker.cpp | 65 const FunctionDecl *FD = C.getCalleeDecl(CE); in evalCall() 125 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPreStmt()
|
D | BuiltinFunctionChecker.cpp | 35 const FunctionDecl *FD = C.getCalleeDecl(CE); in evalCall()
|
D | GenericTaintChecker.cpp | 296 const FunctionDecl *FDecl = C.getCalleeDecl(CE); in addSourcesPre() 373 const FunctionDecl *FDecl = C.getCalleeDecl(CE); in addSourcesPost() 410 const FunctionDecl *FDecl = C.getCalleeDecl(CE); in checkPre() 613 const FunctionDecl *FDecl = C.getCalleeDecl(CE); in getPrintfFormatArgumentNum()
|
D | MacOSKeychainAPIChecker.cpp | 283 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPreStmt() 445 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPostStmt()
|
D | BasicObjCFoundationChecks.cpp | 283 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPreStmt() 397 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPreStmt()
|
D | UnixAPIChecker.cpp | 333 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPreStmt()
|
D | StreamChecker.cpp | 107 const FunctionDecl *FD = C.getCalleeDecl(CE); in REGISTER_MAP_WITH_PROGRAMSTATE()
|
D | MallocChecker.cpp | 456 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPostStmt() 1247 if (isFreeFunction(C.getCalleeDecl(CE), C.getASTContext())) in checkPreStmt()
|
D | CStringChecker.cpp | 1760 const FunctionDecl *FDecl = C.getCalleeDecl(CE); in evalCall()
|
D | RetainCountChecker.cpp | 3106 const FunctionDecl *FD = C.getCalleeDecl(CE); in evalCall()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | CheckerContext.cpp | 22 const FunctionDecl *CheckerContext::getCalleeDecl(const CallExpr *CE) const { in getCalleeDecl() function in CheckerContext
|
D | ExprEngine.cpp | 810 const Decl *Callee = OCE->getCalleeDecl(); in Visit()
|
/external/clang/lib/ARCMigrate/ |
D | TransUnbridgedCasts.cpp | 413 FD = dyn_cast_or_null<FunctionDecl>(callE->getCalleeDecl())) in isPassedToCFRetain() 426 FD = dyn_cast_or_null<FunctionDecl>(callE->getCalleeDecl())) { in isPassedToCParamWithKnownOwnership()
|
/external/clang/lib/Analysis/ |
D | UninitializedValues.cpp | 633 if (Decl *Callee = ce->getCalleeDecl()) { in VisitCallExpr()
|
D | ThreadSafety.cpp | 1685 NamedDecl *FunDecl = dyn_cast_or_null<NamedDecl>(Exp->getCalleeDecl()); in getEdgeLockset() 2105 NamedDecl *D = dyn_cast_or_null<NamedDecl>(Exp->getCalleeDecl()); in VisitCallExpr()
|
/external/clang/lib/AST/ |
D | ExprCXX.cpp | 674 cast<FunctionDecl>(getCalleeDecl())->getParamDecl(0)->getType(); in getLiteralOperatorKind() 696 return cast<FunctionDecl>(getCalleeDecl())->getLiteralIdentifier(); in getUDSuffix()
|
D | Expr.cpp | 1094 Decl *CallExpr::getCalleeDecl() { in getCalleeDecl() function in CallExpr 1119 return dyn_cast_or_null<FunctionDecl>(getCalleeDecl()); in getDirectCallee() 2033 if (const Decl *FD = CE->getCalleeDecl()) { in isUnusedResultAWarning() 2955 = dyn_cast_or_null<CXXMethodDecl>(E->getCalleeDecl())) { in VisitCallExpr()
|
/external/clang/lib/Sema/ |
D | SemaExceptionSpec.cpp | 931 CT = canCalleeThrow(*this, E, CE->getCalleeDecl()); in canThrow()
|
D | SemaStmt.cpp | 204 if (const Decl *FD = CE->getCalleeDecl()) { in DiagnoseUnusedExprResult() 1639 FunctionDecl *D = dyn_cast<FunctionDecl>(CE->getCalleeDecl()); in NoteForRangeBeginEndFunction()
|
D | SemaChecking.cpp | 1784 if (const NamedDecl *ND = dyn_cast_or_null<NamedDecl>(CE->getCalleeDecl())) { in checkFormatStringExpr() 6134 FunctionDecl *Fn = dyn_cast_or_null<FunctionDecl>(CE->getCalleeDecl()); in findCapturingExpr()
|
/external/clang/include/clang/ASTMatchers/ |
D | ASTMatchersInternal.h | 465 return matchesDecl(Node.getCalleeDecl(), Finder, Builder); in matchesSpecialized()
|
/external/clang/lib/CodeGen/ |
D | CGClass.cpp | 1013 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(MCE->getCalleeDecl()); in getMemcpyableField() 1029 FunctionDecl *FD = dyn_cast<FunctionDecl>(CE->getCalleeDecl()); in getMemcpyableField()
|
D | CGObjC.cpp | 1042 = dyn_cast_or_null<FunctionDecl>(call->getCalleeDecl())) in hasTrivialSetExpr()
|
/external/clang/include/clang/AST/ |
D | Expr.h | 2155 Decl *getCalleeDecl(); 2156 const Decl *getCalleeDecl() const { in getCalleeDecl() function 2157 return const_cast<CallExpr*>(this)->getCalleeDecl(); in getCalleeDecl()
|