reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

gen/tools/clang/include/clang/AST/StmtDataCollectors.inc
   62     if (const FunctionDecl *D = S->getDirectCallee()) {
tools/clang/include/clang/AST/Expr.h
 2775     const FunctionDecl *FD = getDirectCallee();
tools/clang/lib/ARCMigrate/Transforms.cpp
   86     if (const FunctionDecl *FD = callE->getDirectCallee()) {
tools/clang/lib/AST/Expr.cpp
 3310   const FunctionDecl* FD = getDirectCallee();
tools/clang/lib/AST/ExprConstant.cpp
  148     const FunctionDecl *Callee = CE->getDirectCallee();
tools/clang/lib/Analysis/Consumed.cpp
  741   const FunctionDecl *FunDecl = Call->getDirectCallee();
  814   const auto *FunDecl = dyn_cast_or_null<FunctionDecl>(Call->getDirectCallee());
tools/clang/lib/Analysis/ThreadSafety.cpp
 2052     examineArguments(CE->getDirectCallee(), CE->arg_begin(), CE->arg_end());
 2078         const FunctionDecl *FD = OE->getDirectCallee();
 2085     examineArguments(Exp->getDirectCallee(), Exp->arg_begin(), Exp->arg_end());
tools/clang/lib/Analysis/ThreadSafetyCommon.cpp
  379     if (const FunctionDecl *FD = CE->getDirectCallee()) {
  383         LRCallCtx.AttrDecl = CE->getDirectCallee();
tools/clang/lib/CodeGen/CGBuiltin.cpp
 3733     auto NewName = std::string("__") + E->getDirectCallee()->getName().str();
 6070     const FunctionDecl *FD = E->getDirectCallee();
 7142     const FunctionDecl *FD = E->getDirectCallee();
tools/clang/lib/CodeGen/CGExpr.cpp
 4908                E->getDirectCallee(), /*ParamsToSkip*/ 0, Order);
tools/clang/lib/CodeGen/CGExprCXX.cpp
   69                      CE->getDirectCallee());
  252                    drop_begin(CE->arguments(), 1), CE->getDirectCallee(),
tools/clang/lib/CodeGen/CGGPUBuiltin.cpp
   80                E->getDirectCallee()->getType()->getAs<FunctionProtoType>(),
   81                E->arguments(), E->getDirectCallee(),
tools/clang/lib/CodeGen/CodeGenModule.cpp
 2583       const FunctionDecl *FD = E->getDirectCallee();
tools/clang/lib/Sema/SemaCUDA.cpp
  530       InitFn = CE->getDirectCallee();
tools/clang/lib/Sema/SemaChecking.cpp
 9882     const FunctionDecl *FD = CE->getDirectCallee();
12185     FD = Call->getDirectCallee();
tools/clang/lib/Sema/SemaExpr.cpp
11584     const FunctionDecl *FD = CE->getDirectCallee();
tools/clang/lib/Sema/SemaObjCProperty.cpp
 1493           if (const FunctionDecl *FuncDecl = CXXCE->getDirectCallee())
tools/clang/lib/Sema/SemaStmt.cpp
 2749     const FunctionDecl *FD = Call->getDirectCallee();
tools/clang/lib/StaticAnalyzer/Checkers/CStringSyntaxChecker.cpp
   56       const FunctionDecl *FD = CE->getDirectCallee();
tools/clang/lib/StaticAnalyzer/Checkers/LocalizationChecker.cpp
 1282     if (const FunctionDecl *FD = CE->getDirectCallee()) {
tools/clang/lib/StaticAnalyzer/Checkers/MacOSKeychainAPIChecker.cpp
  636   const FunctionDecl *funDecl = CE->getDirectCallee();
tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp
 1683     const FunctionDecl *FD = CE->getDirectCallee();
 3250               OS << OpCallE->getDirectCallee()->getNameAsString();
tools/clang/lib/StaticAnalyzer/Checkers/MallocOverflowSecurityChecker.cpp
  313           const FunctionDecl *FD = TheCall->getDirectCallee();
tools/clang/lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp
   92     const FunctionDecl *FD = E->getDirectCallee();
  222         const FunctionDecl *Callee = i->AllocCall->getDirectCallee();
tools/clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp
   79       dyn_cast_or_null<CXXMethodDecl>(CE->getDirectCallee());
tools/clang/lib/StaticAnalyzer/Core/CallEvent.cpp
  662   const FunctionDecl *D = getOriginExpr()->getDirectCallee();
  674   const FunctionDecl *D = CE->getDirectCallee();
 1365     const FunctionDecl *DirectCallee = OpCE->getDirectCallee();
tools/clang/tools/extra/clang-change-namespace/ChangeNamespace.cpp
  636     const FunctionDecl *Func = Call->getDirectCallee();
tools/clang/tools/extra/clang-tidy/abseil/DurationFactoryFloatCheck.cpp
   63           MatchedCall->getDirectCallee()->getName())
tools/clang/tools/extra/clang-tidy/bugprone/ArgumentCommentCheck.cpp
  332     const FunctionDecl *Callee = Call->getDirectCallee();
tools/clang/tools/extra/clang-tidy/bugprone/AssertSideEffectCheck.cpp
   56     if (const auto *FuncDecl = CExpr->getDirectCallee()) {
tools/clang/tools/extra/clang-tidy/bugprone/MisplacedOperatorInStrlenInAllocCheck.cpp
  107       << StrLen->getDirectCallee()->getName() << Hint;
tools/clang/tools/extra/clang-tidy/bugprone/NotNullTerminatedResultCheck.cpp
  427       FunctionExpr->getDirectCallee()->getIdentifier()->getLength();
  817   StringRef Name = FunctionExpr->getDirectCallee()->getName();
tools/clang/tools/extra/clang-tidy/linuxkernel/MustCheckErrsCheck.cpp
   39         << MatchedCallExpr->getDirectCallee();
   47         << MatchedTransitiveCallExpr->getDirectCallee();
tools/clang/tools/extra/clang-tidy/modernize/UseAutoCheck.cpp
  490               ->getDirectCallee()
tools/clang/tools/extra/clang-tidy/mpi/BufferDerefCheck.cpp
   28   if (!CE->getDirectCallee())
   31   const IdentifierInfo *Identifier = CE->getDirectCallee()->getIdentifier();
tools/clang/tools/extra/clang-tidy/mpi/TypeMismatchCheck.cpp
  246   if (!CE->getDirectCallee())
  249   const IdentifierInfo *Identifier = CE->getDirectCallee()->getIdentifier();
tools/clang/tools/extra/clang-tidy/performance/InefficientAlgorithmCheck.cpp
  107   const auto *AlgDecl = AlgCall->getDirectCallee();
tools/clang/tools/extra/clang-tidy/performance/TypePromotionInMathFnCheck.cpp
  162   StringRef OldFnName = Call->getDirectCallee()->getName();
tools/clang/tools/extra/clang-tidy/portability/SIMDIntrinsicsCheck.cpp
  113   const FunctionDecl *Callee = Call->getDirectCallee();
tools/clang/tools/extra/clang-tidy/readability/NonConstParameterCheck.cpp
   70       if (const FunctionDecl *FD = CE->getDirectCallee()) {
tools/clang/tools/extra/clang-tidy/utils/ExceptionAnalyzer.cpp
  194     if (const FunctionDecl *Func = Call->getDirectCallee()) {