/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
D | CheckerContext.h | 241 const FunctionDecl *getCalleeDecl(const CallExpr *CE) const; 248 const FunctionDecl *FunDecl = getCalleeDecl(CE); in getCalleeIdentifier() 257 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 | GenericTaintChecker.cpp | 295 const FunctionDecl *FDecl = C.getCalleeDecl(CE); in addSourcesPre() 372 const FunctionDecl *FDecl = C.getCalleeDecl(CE); in addSourcesPost() 409 const FunctionDecl *FDecl = C.getCalleeDecl(CE); in checkPre() 612 const FunctionDecl *FDecl = C.getCalleeDecl(CE); in getPrintfFormatArgumentNum()
|
D | BuiltinFunctionChecker.cpp | 35 const FunctionDecl *FD = C.getCalleeDecl(CE); in evalCall()
|
D | MacOSKeychainAPIChecker.cpp | 284 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPreStmt() 446 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPostStmt()
|
D | UnixAPIChecker.cpp | 328 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPreStmt()
|
D | StreamChecker.cpp | 109 const FunctionDecl *FD = C.getCalleeDecl(CE); in REGISTER_MAP_WITH_PROGRAMSTATE()
|
D | BasicObjCFoundationChecks.cpp | 433 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPreStmt() 549 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPreStmt()
|
D | MallocChecker.cpp | 669 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPostStmt() 970 const FunctionDecl *FD = C.getCalleeDecl(CE); in getAllocationFamily() 973 FD = dyn_cast<FunctionDecl>(CE->getCalleeDecl()); in getAllocationFamily()
|
D | CStringChecker.cpp | 1872 const FunctionDecl *FDecl = C.getCalleeDecl(CE); in evalCall()
|
D | RetainCountChecker.cpp | 3211 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 | 954 const Decl *Callee = OCE->getCalleeDecl(); in Visit()
|
/external/clang/lib/ARCMigrate/ |
D | TransUnbridgedCasts.cpp | 421 FD = dyn_cast_or_null<FunctionDecl>(callE->getCalleeDecl())) in isPassedToCFRetain() 434 FD = dyn_cast_or_null<FunctionDecl>(callE->getCalleeDecl())) { in isPassedToCParamWithKnownOwnership()
|
/external/clang/lib/Sema/ |
D | SemaExceptionSpec.cpp | 912 else if (CE->getCalleeDecl()) in canThrow() 913 CT = canCalleeThrow(*this, E, CE->getCalleeDecl()); in canThrow()
|
D | AnalysisBasedWarnings.cpp | 198 if (CE && CE->getCalleeDecl() && in checkForFunctionCall() 199 CE->getCalleeDecl()->getCanonicalDecl() == FD) { in checkForFunctionCall()
|
D | SemaStmt.cpp | 231 if (const Decl *FD = CE->getCalleeDecl()) { in DiagnoseUnusedExprResult() 1845 FunctionDecl *D = dyn_cast<FunctionDecl>(CE->getCalleeDecl()); in NoteForRangeBeginEndFunction()
|
/external/clang/lib/Analysis/ |
D | ReachableCode.cpp | 184 dyn_cast_or_null<FunctionDecl>(cast<CallExpr>(S)->getCalleeDecl()); in isConfigurationValue()
|
D | UninitializedValues.cpp | 648 if (Decl *Callee = ce->getCalleeDecl()) { in VisitCallExpr()
|
D | ThreadSafety.cpp | 1757 NamedDecl *FunDecl = dyn_cast_or_null<NamedDecl>(Exp->getCalleeDecl()); in getEdgeLockset() 2195 NamedDecl *D = dyn_cast_or_null<NamedDecl>(Exp->getCalleeDecl()); in VisitCallExpr()
|
/external/clang/lib/AST/ |
D | ExprCXX.cpp | 746 cast<FunctionDecl>(getCalleeDecl())->getParamDecl(0)->getType(); in getLiteralOperatorKind() 768 return cast<FunctionDecl>(getCalleeDecl())->getLiteralIdentifier(); in getUDSuffix()
|
D | Expr.cpp | 1149 Decl *CallExpr::getCalleeDecl() { in getCalleeDecl() function in CallExpr 1174 return dyn_cast_or_null<FunctionDecl>(getCalleeDecl()); in getDirectCallee() 2113 if (const Decl *FD = CE->getCalleeDecl()) { in isUnusedResultAWarning() 3055 = dyn_cast_or_null<CXXMethodDecl>(E->getCalleeDecl())) { in VisitCallExpr()
|
/external/clang/lib/CodeGen/ |
D | CGClass.cpp | 1038 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(MCE->getCalleeDecl()); in getMemcpyableField() 1054 FunctionDecl *FD = dyn_cast<FunctionDecl>(CE->getCalleeDecl()); in getMemcpyableField()
|
/external/clang/include/clang/AST/ |
D | Expr.h | 2189 Decl *getCalleeDecl(); 2190 const Decl *getCalleeDecl() const { in getCalleeDecl() function 2191 return const_cast<CallExpr*>(this)->getCalleeDecl(); in getCalleeDecl()
|
/external/clang/include/clang/ASTMatchers/ |
D | ASTMatchersInternal.h | 605 return matchesDecl(Node.getCalleeDecl(), Finder, Builder); in matchesSpecialized()
|