HomeSort by: relevance | last modified time | path
    Searched refs:getCalleeDecl (Results 1 - 25 of 37) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CheckerContext.h 329 const FunctionDecl *getCalleeDecl(const CallExpr *CE) const;
336 const FunctionDecl *FunDecl = getCalleeDecl(CE);
345 const FunctionDecl *FunDecl = getCalleeDecl(CE);
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
CheckerContext.cpp 21 const FunctionDecl *CheckerContext::getCalleeDecl(const CallExpr *CE) const {
  /src/external/apache2/llvm/dist/clang/examples/CallSuperAttribute/
CallSuperAttrInfo.cpp 53 if (CallExpr->getCalleeDecl() == MustCalled) {
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/
AnyCall.h 70 D = CE->getCalleeDecl();
  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
TransUnbridgedCasts.cpp 418 FD = dyn_cast_or_null<FunctionDecl>(callE->getCalleeDecl()))
431 FD = dyn_cast_or_null<FunctionDecl>(callE->getCalleeDecl())) {
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
RetainCountDiagnostics.cpp 227 FD = dyn_cast<FunctionDecl>(CE->getCalleeDecl());
229 if (const auto *MD = dyn_cast<CXXMethodDecl>(CE->getCalleeDecl())) {
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
UnixAPIChecker.cpp 106 const FunctionDecl *FD = C.getCalleeDecl(CE);
462 const FunctionDecl *FD = C.getCalleeDecl(CE);
MacOSKeychainAPIChecker.cpp 254 const FunctionDecl *FD = C.getCalleeDecl(CE);
405 const FunctionDecl *FD = C.getCalleeDecl(CE);
PointerArithChecker.cpp 220 const FunctionDecl *FD = C.getCalleeDecl(CE);
BasicObjCFoundationChecks.cpp 430 const FunctionDecl *FD = C.getCalleeDecl(CE);
MallocChecker.cpp 1154 const FunctionDecl *FD = C.getCalleeDecl(CE);
1239 const FunctionDecl *FD = C.getCalleeDecl(CE);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGCall.h 63 const GlobalDecl getCalleeDecl() const { return CalleeDecl; }
CGClass.cpp 1185 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(MCE->getCalleeDecl());
1199 FunctionDecl *FD = dyn_cast<FunctionDecl>(CE->getCalleeDecl());
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaCoroutine.cpp 397 S.Diag(cast<CallExpr>(JustAddress)->getCalleeDecl()->getLocation(),
495 S.Diag(AwaitSuspend->getCalleeDecl()->getLocation(),
692 checkDeclNoexcept(cast<CallExpr>(E)->getCalleeDecl());
SemaStmt.cpp 295 if (const Decl *FD = CE->getCalleeDecl()) {
706 SourceLocation CalleeLoc = CE->getCalleeDecl()
707 ? CE->getCalleeDecl()->getBeginLoc()
712 dyn_cast_or_null<CXXMethodDecl>(CE->getCalleeDecl())) {
754 if (const auto *ND = dyn_cast_or_null<NamedDecl>(CE->getCalleeDecl()))
773 if (const auto *ND = dyn_cast_or_null<NamedDecl>(CE->getCalleeDecl())) {
834 if (const auto *ND = dyn_cast_or_null<NamedDecl>(CE->getCalleeDecl()))
2381 FunctionDecl *D = dyn_cast<FunctionDecl>(CE->getCalleeDecl());
AnalysisBasedWarnings.cpp 195 if (!CE || !CE->getCalleeDecl() ||
196 CE->getCalleeDecl()->getCanonicalDecl() != FD)
SemaExceptionSpec.cpp 1163 CT = canCalleeThrow(*this, CE, CE->getCalleeDecl());
SemaChecking.cpp 368 const Decl *TargetDecl = CE->getCalleeDecl();
6422 << cast<FunctionDecl>(TheCall->getCalleeDecl())->getIdentifier();
6503 cast<FunctionDecl>(TheCall->getCalleeDecl())->getBuiltinID();
7433 if (const NamedDecl *ND = dyn_cast_or_null<NamedDecl>(CE->getCalleeDecl())) {
10530 dyn_cast<FunctionDecl>(E->getCalleeDecl())->getQualifiedNameAsString();
14901 FunctionDecl *Fn = dyn_cast_or_null<FunctionDecl>(CE->getCalleeDecl());
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
ReachableCode.cpp 216 dyn_cast_or_null<FunctionDecl>(cast<CallExpr>(S)->getCalleeDecl());
UninitializedValues.cpp 723 if (Decl *Callee = ce->getCalleeDecl()) {
ThreadSafety.cpp 1529 auto *FunDecl = dyn_cast_or_null<NamedDecl>(Exp->getCalleeDecl());
2101 auto *D = dyn_cast_or_null<NamedDecl>(Exp->getCalleeDecl());
  /src/external/apache2/llvm/dist/clang/lib/AST/
ASTStructuralEquivalence.cpp 181 Decl *Callee1 = const_cast<Decl *>(E1->getCalleeDecl());
182 Decl *Callee2 = const_cast<Decl *>(E2->getCalleeDecl());
ExprCXX.cpp 925 cast<FunctionDecl>(getCalleeDecl())->getParamDecl(0)->getType();
947 return cast<FunctionDecl>(getCalleeDecl())->getLiteralIdentifier();
Expr.cpp 1491 const Decl *D = getCalleeDecl();
2558 if (const Decl *FD = CE->getCalleeDecl()) {
3400 const Decl *FD = cast<CallExpr>(this)->getCalleeDecl();
3633 = dyn_cast_or_null<const CXXMethodDecl>(E->getCalleeDecl())) {
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Expr.h 2896 Decl *getCalleeDecl() { return getCallee()->getReferencedDeclOfCallee(); }
2897 const Decl *getCalleeDecl() const {
2903 return dyn_cast_or_null<FunctionDecl>(getCalleeDecl());
2906 return dyn_cast_or_null<FunctionDecl>(getCalleeDecl());

Completed in 95 milliseconds

1 2