Home
last modified time | relevance | path

Searched refs:getCalleeDecl (Results 1 – 25 of 83) sorted by relevance

1234

/external/llvm-project/clang-tools-extra/clang-tidy/cert/
DNonTrivialTypesLibcMemoryCallsCheck.cpp133 << cast<NamedDecl>(Caller->getCalleeDecl()); in check()
138 << cast<NamedDecl>(Caller->getCalleeDecl()); in check()
143 << cast<NamedDecl>(Caller->getCalleeDecl()); in check()
DSetLongJmpCheck.cpp64 diag(E->getExprLoc(), DiagWording) << cast<NamedDecl>(E->getCalleeDecl()); in check()
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DCheckerContext.h271 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/
DSignalHandlerCheck.cpp134 if (isa<FunctionDecl>(CE->getCalleeDecl())) in check()
150 const auto *F = cast<FunctionDecl>(FunctionCall->getCalleeDecl()); in check()
DMisplacedPointerArithmeticInAllocCheck.cpp71 Func = cast<NamedDecl>(Call->getCalleeDecl()); in check()
/external/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DCheckerContext.h329 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/
DChrootChecker.cpp66 const FunctionDecl *FD = C.getCalleeDecl(CE); in evalCall()
126 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPreStmt()
DGenericTaintChecker.cpp295 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()
DBuiltinFunctionChecker.cpp35 const FunctionDecl *FD = C.getCalleeDecl(CE); in evalCall()
DMacOSKeychainAPIChecker.cpp274 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPreStmt()
444 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPostStmt()
DUnixAPIChecker.cpp352 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPreStmt()
/external/clang/lib/StaticAnalyzer/Core/
DCheckerContext.cpp22 const FunctionDecl *CheckerContext::getCalleeDecl(const CallExpr *CE) const { in getCalleeDecl() function in CheckerContext
/external/llvm-project/clang-tools-extra/clang-tidy/cppcoreguidelines/
DProTypeVarargCheck.cpp91 const auto *FDecl = dyn_cast<FunctionDecl>(C->getCalleeDecl()); in hasSingleVariadicArgumentWithValue()
/external/llvm-project/clang/examples/CallSuperAttribute/
DCallSuperAttrInfo.cpp53 if (CallExpr->getCalleeDecl() == MustCalled) { in VisitCallExpr()
/external/llvm-project/clang/lib/StaticAnalyzer/Core/
DCheckerContext.cpp21 const FunctionDecl *CheckerContext::getCalleeDecl(const CallExpr *CE) const { in getCalleeDecl() function in CheckerContext
/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/
DUnixAPIChecker.cpp106 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPreStmt()
462 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPreStmt()
DMacOSKeychainAPIChecker.cpp254 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPreStmt()
405 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPostStmt()
DPointerArithChecker.cpp220 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPostStmt()
/external/llvm-project/clang/lib/ARCMigrate/
DTransUnbridgedCasts.cpp418 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/
DTransUnbridgedCasts.cpp421 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/
DAnyCall.h70 D = CE->getCalleeDecl(); in AnyCall()
/external/bcc/src/cc/frontends/clang/
Db_frontend_action.cc131 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/
DUnusedParametersCheck.cpp102 dyn_cast_or_null<FunctionDecl>(Call->getCalleeDecl())) { in WalkUpFromCallExpr()
/external/llvm-project/clang-tools-extra/clang-tidy/modernize/
DAvoidBindCheck.cpp151 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/
DCGCall.h63 const GlobalDecl getCalleeDecl() const { return CalleeDecl; } in getCalleeDecl() function

1234