/external/llvm-project/clang-tools-extra/clang-tidy/cert/ |
D | NonTrivialTypesLibcMemoryCallsCheck.cpp | 133 << cast<NamedDecl>(Caller->getCalleeDecl()); in check() 138 << cast<NamedDecl>(Caller->getCalleeDecl()); in check() 143 << cast<NamedDecl>(Caller->getCalleeDecl()); in check()
|
D | SetLongJmpCheck.cpp | 64 diag(E->getExprLoc(), DiagWording) << cast<NamedDecl>(E->getCalleeDecl()); in check()
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
D | CheckerContext.h | 271 const FunctionDecl *getCalleeDecl(const CallExpr *CE) const; 278 const FunctionDecl *FunDecl = getCalleeDecl(CE); in getCalleeIdentifier() 287 const FunctionDecl *FunDecl = getCalleeDecl(CE); in getCalleeName()
|
/external/llvm-project/clang-tools-extra/clang-tidy/bugprone/ |
D | SignalHandlerCheck.cpp | 134 if (isa<FunctionDecl>(CE->getCalleeDecl())) in check() 150 const auto *F = cast<FunctionDecl>(FunctionCall->getCalleeDecl()); in check()
|
D | MisplacedPointerArithmeticInAllocCheck.cpp | 71 Func = cast<NamedDecl>(Call->getCalleeDecl()); in check()
|
/external/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
D | CheckerContext.h | 329 const FunctionDecl *getCalleeDecl(const CallExpr *CE) const; 336 const FunctionDecl *FunDecl = getCalleeDecl(CE); in getCalleeIdentifier() 345 const FunctionDecl *FunDecl = getCalleeDecl(CE); in getCalleeName()
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | ChrootChecker.cpp | 66 const FunctionDecl *FD = C.getCalleeDecl(CE); in evalCall() 126 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 | 274 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPreStmt() 444 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPostStmt()
|
D | UnixAPIChecker.cpp | 352 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPreStmt()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | CheckerContext.cpp | 22 const FunctionDecl *CheckerContext::getCalleeDecl(const CallExpr *CE) const { in getCalleeDecl() function in CheckerContext
|
/external/llvm-project/clang-tools-extra/clang-tidy/cppcoreguidelines/ |
D | ProTypeVarargCheck.cpp | 91 const auto *FDecl = dyn_cast<FunctionDecl>(C->getCalleeDecl()); in hasSingleVariadicArgumentWithValue()
|
/external/llvm-project/clang/examples/CallSuperAttribute/ |
D | CallSuperAttrInfo.cpp | 53 if (CallExpr->getCalleeDecl() == MustCalled) { in VisitCallExpr()
|
/external/llvm-project/clang/lib/StaticAnalyzer/Core/ |
D | CheckerContext.cpp | 21 const FunctionDecl *CheckerContext::getCalleeDecl(const CallExpr *CE) const { in getCalleeDecl() function in CheckerContext
|
/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
D | UnixAPIChecker.cpp | 106 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPreStmt() 462 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPreStmt()
|
D | MacOSKeychainAPIChecker.cpp | 254 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPreStmt() 405 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPostStmt()
|
D | PointerArithChecker.cpp | 220 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPostStmt()
|
/external/llvm-project/clang/lib/ARCMigrate/ |
D | TransUnbridgedCasts.cpp | 418 FD = dyn_cast_or_null<FunctionDecl>(callE->getCalleeDecl())) in isPassedToCFRetain() 431 FD = dyn_cast_or_null<FunctionDecl>(callE->getCalleeDecl())) { in isPassedToCParamWithKnownOwnership()
|
/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/llvm-project/clang/include/clang/Analysis/ |
D | AnyCall.h | 70 D = CE->getCalleeDecl(); in AnyCall()
|
/external/bcc/src/cc/frontends/clang/ |
D | b_frontend_action.cc | 131 if (VarDecl *V = dyn_cast<VarDecl>(E->getCalleeDecl())) in VisitCallExpr() 336 if (VarDecl *V = dyn_cast<VarDecl>(Call->getCalleeDecl())) { in VisitCallExpr() 344 if (FunctionDecl *F = dyn_cast<FunctionDecl>(Call->getCalleeDecl())) { in VisitCallExpr() 885 } else if (Call->getCalleeDecl()) { in VisitCallExpr() 886 NamedDecl *Decl = dyn_cast<NamedDecl>(Call->getCalleeDecl()); in VisitCallExpr()
|
/external/llvm-project/clang-tools-extra/clang-tidy/misc/ |
D | UnusedParametersCheck.cpp | 102 dyn_cast_or_null<FunctionDecl>(Call->getCalleeDecl())) { in WalkUpFromCallExpr()
|
/external/llvm-project/clang-tools-extra/clang-tidy/modernize/ |
D | AvoidBindCheck.cpp | 151 const auto *ND = dyn_cast<NamedDecl>(CE->getCalleeDecl()); in isCallExprNamed() 551 const auto *Decl = dyn_cast<FunctionDecl>(Bind->getCalleeDecl()); in getLambdaProperties()
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGCall.h | 63 const GlobalDecl getCalleeDecl() const { return CalleeDecl; } in getCalleeDecl() function
|