/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
D | CheckerContext.h | 236 const FunctionDecl *getCalleeDecl(const CallExpr *CE) const; 243 const FunctionDecl *FunDecl = getCalleeDecl(CE); in getCalleeIdentifier() 252 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 | 284 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPreStmt() 446 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPostStmt()
|
D | UnixAPIChecker.cpp | 333 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPreStmt()
|
D | BasicObjCFoundationChecks.cpp | 398 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPreStmt() 512 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 | 576 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPostStmt() 860 const FunctionDecl *FD = C.getCalleeDecl(CE); in getAllocationFamily() 863 FD = dyn_cast<FunctionDecl>(CE->getCalleeDecl()); in getAllocationFamily()
|
D | CStringChecker.cpp | 1819 const FunctionDecl *FDecl = C.getCalleeDecl(CE); in evalCall()
|
D | RetainCountChecker.cpp | 3168 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 | 881 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/Sema/ |
D | SemaExceptionSpec.cpp | 898 else if (CE->getCalleeDecl()) in canThrow() 899 CT = canCalleeThrow(*this, E, CE->getCalleeDecl()); in canThrow()
|
D | SemaStmt.cpp | 218 if (const Decl *FD = CE->getCalleeDecl()) { in DiagnoseUnusedExprResult() 1779 FunctionDecl *D = dyn_cast<FunctionDecl>(CE->getCalleeDecl()); in NoteForRangeBeginEndFunction()
|
D | SemaChecking.cpp | 2066 if (const NamedDecl *ND = dyn_cast_or_null<NamedDecl>(CE->getCalleeDecl())) { in checkFormatStringExpr() 6539 FunctionDecl *Fn = dyn_cast_or_null<FunctionDecl>(CE->getCalleeDecl()); in findCapturingExpr()
|
/external/clang/lib/Analysis/ |
D | UninitializedValues.cpp | 633 if (Decl *Callee = ce->getCalleeDecl()) { in VisitCallExpr()
|
D | ThreadSafety.cpp | 1698 NamedDecl *FunDecl = dyn_cast_or_null<NamedDecl>(Exp->getCalleeDecl()); in getEdgeLockset() 2140 NamedDecl *D = dyn_cast_or_null<NamedDecl>(Exp->getCalleeDecl()); in VisitCallExpr()
|
/external/clang/lib/AST/ |
D | ExprCXX.cpp | 676 cast<FunctionDecl>(getCalleeDecl())->getParamDecl(0)->getType(); in getLiteralOperatorKind() 698 return cast<FunctionDecl>(getCalleeDecl())->getLiteralIdentifier(); in getUDSuffix()
|
D | Expr.cpp | 1110 Decl *CallExpr::getCalleeDecl() { in getCalleeDecl() function in CallExpr 1135 return dyn_cast_or_null<FunctionDecl>(getCalleeDecl()); in getDirectCallee() 2051 if (const Decl *FD = CE->getCalleeDecl()) { in isUnusedResultAWarning() 2961 = dyn_cast_or_null<CXXMethodDecl>(E->getCalleeDecl())) { in VisitCallExpr()
|
/external/clang/lib/CodeGen/ |
D | CGClass.cpp | 1007 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(MCE->getCalleeDecl()); in getMemcpyableField() 1023 FunctionDecl *FD = dyn_cast<FunctionDecl>(CE->getCalleeDecl()); in getMemcpyableField()
|
D | CGObjC.cpp | 1070 = dyn_cast_or_null<FunctionDecl>(call->getCalleeDecl())) in hasTrivialSetExpr()
|
/external/clang/include/clang/AST/ |
D | Expr.h | 2166 Decl *getCalleeDecl(); 2167 const Decl *getCalleeDecl() const { in getCalleeDecl() function 2168 return const_cast<CallExpr*>(this)->getCalleeDecl(); in getCalleeDecl()
|
/external/clang/include/clang/ASTMatchers/ |
D | ASTMatchersInternal.h | 565 return matchesDecl(Node.getCalleeDecl(), Finder, Builder); in matchesSpecialized()
|