/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
D | CheckerContext.h | 267 const FunctionDecl *getCalleeDecl(const CallExpr *CE) const; 274 const FunctionDecl *FunDecl = getCalleeDecl(CE); in getCalleeIdentifier() 283 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 | 282 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPreStmt() 452 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPostStmt()
|
D | UnixAPIChecker.cpp | 352 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 | 432 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPreStmt() 549 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPreStmt()
|
D | MallocChecker.cpp | 742 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPostStmt() 1197 const FunctionDecl *FD = C.getCalleeDecl(CE); in getAllocationFamily() 1200 FD = dyn_cast<FunctionDecl>(CE->getCalleeDecl()); in getAllocationFamily()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | CheckerContext.cpp | 22 const FunctionDecl *CheckerContext::getCalleeDecl(const CallExpr *CE) const { in getCalleeDecl() function in CheckerContext
|
/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/include/clang/CodeGen/ |
D | CGFunctionInfo.h | 532 const Decl *getCalleeDecl() { return CalleeDecl; } in getCalleeDecl() function
|
/external/clang/lib/Sema/ |
D | SemaExceptionSpec.cpp | 980 else if (CE->getCalleeDecl()) in canThrow() 981 CT = canCalleeThrow(*this, E, CE->getCalleeDecl()); in canThrow()
|
D | AnalysisBasedWarnings.cpp | 175 if (!CE || !CE->getCalleeDecl() || in hasRecursiveCallInPath() 176 CE->getCalleeDecl()->getCanonicalDecl() != FD) in hasRecursiveCallInPath()
|
D | SemaStmt.cpp | 251 if (const Decl *FD = CE->getCalleeDecl()) { in DiagnoseUnusedExprResult() 1886 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 | 707 if (Decl *Callee = ce->getCalleeDecl()) { in VisitCallExpr()
|
D | ThreadSafety.cpp | 1410 NamedDecl *FunDecl = dyn_cast_or_null<NamedDecl>(Exp->getCalleeDecl()); in getEdgeLockset() 1966 NamedDecl *D = dyn_cast_or_null<NamedDecl>(Exp->getCalleeDecl()); in VisitCallExpr()
|
/external/clang/lib/AST/ |
D | Expr.cpp | 1197 Decl *CallExpr::getCalleeDecl() { in getCalleeDecl() function in CallExpr 1222 return dyn_cast_or_null<FunctionDecl>(getCalleeDecl()); in getDirectCallee() 2203 if (const Decl *FD = CE->getCalleeDecl()) { in isUnusedResultAWarning() 3025 const Decl *FD = cast<CallExpr>(this)->getCalleeDecl(); in HasSideEffects() 3228 = dyn_cast_or_null<const CXXMethodDecl>(E->getCalleeDecl())) { in VisitCallExpr()
|
D | ExprCXX.cpp | 739 cast<FunctionDecl>(getCalleeDecl())->getParamDecl(0)->getType(); in getLiteralOperatorKind() 761 return cast<FunctionDecl>(getCalleeDecl())->getLiteralIdentifier(); in getUDSuffix()
|
/external/clang/lib/CodeGen/ |
D | CGClass.cpp | 1261 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(MCE->getCalleeDecl()); in getMemcpyableField() 1275 FunctionDecl *FD = dyn_cast<FunctionDecl>(CE->getCalleeDecl()); in getMemcpyableField()
|
D | CGCall.cpp | 1453 const Decl *TargetDecl = CalleeInfo.getCalleeDecl(); in ConstructAttributeList() 3583 const Decl *TargetDecl = CalleeInfo.getCalleeDecl(); in EmitCall() 3659 const Decl *TargetDecl = CalleeInfo.getCalleeDecl(); in EmitCall()
|
D | CGStmt.cpp | 1542 const Decl *TargetDecl = Call->getCalleeDecl(); in EmitSwitchStmt()
|
/external/clang/include/clang/AST/ |
D | Expr.h | 2229 Decl *getCalleeDecl(); 2230 const Decl *getCalleeDecl() const { in getCalleeDecl() function 2231 return const_cast<CallExpr*>(this)->getCalleeDecl(); in getCalleeDecl()
|
/external/clang/include/clang/ASTMatchers/ |
D | ASTMatchersInternal.h | 711 return matchesDecl(Node.getCalleeDecl(), Finder, Builder); in matchesSpecialized()
|