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

References

tools/clang/include/clang/AST/Expr.h
 2650   Decl *getCalleeDecl() { return getCallee()->getReferencedDeclOfCallee(); }
tools/clang/lib/ARCMigrate/TransGCCalls.cpp
   45     Expr *CEE = E->getCallee()->IgnoreParenImpCasts();
tools/clang/lib/AST/ASTImporter.cpp
 7147       E->getCallee(), E->getType(), E->getRParenLoc());
 7476   auto Imp = importSeq(E->getCallee(), E->getType(), E->getRParenLoc());
tools/clang/lib/AST/StmtPrinter.cpp
 1347   PrintExpr(Call->getCallee());
 1692   PrintExpr(Node->getCallee());
 1786     const auto *DRE = cast<DeclRefExpr>(Node->getCallee()->IgnoreImpCasts());
tools/clang/lib/Analysis/CFG.cpp
 2566   QualType calleeType = C->getCallee()->getType();
 2568     QualType boundType = Expr::findBoundMemberType(C->getCallee());
 2607   if (!CanThrow(C->getCallee(), *Context))
 2615     return Visit(C->getCallee());
tools/clang/lib/Analysis/CallGraph.cpp
   60     Expr *CEE = CE->getCallee()->IgnoreParenImpCasts();
tools/clang/lib/CodeGen/CGObjC.cpp
 3556       C, OO_Equal, CalleeExp->getCallee(), Args, DestTy->getPointeeType(),
tools/clang/lib/Frontend/Rewrite/RewriteModernObjC.cpp
 5632     if (CE->getCallee()->getType()->isBlockPointerType()) {
 5633       Stmt *BlockCall = SynthesizeBlockCall(CE, CE->getCallee());
tools/clang/lib/Frontend/Rewrite/RewriteObjC.cpp
 4734     if (CE->getCallee()->getType()->isBlockPointerType()) {
 4735       Stmt *BlockCall = SynthesizeBlockCall(CE, CE->getCallee());
tools/clang/lib/Sema/SemaChecking.cpp
  161         << TheCall->getCallee()->getSourceRange();
  254   Expr *Builtin = BuiltinCall->getCallee()->IgnoreImpCasts();
  265   if (CE->getCallee()->getType()->isBlockPointerType()) {
  279   if (isa<CXXPseudoDestructorExpr>(CE->getCallee()->IgnoreParens())) {
  468     auto *DRE = cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
 1335         << TheCall->getCallee()->getSourceRange();
 1744   DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
 3734     return Diag(TheCall->getCallee()->getBeginLoc(),
 4380                                                   TheCall->getCallee());
 4398             TheCall->getCallee()->getSourceRange(), CallType);
 4465             TheCall->getCallee()->getSourceRange(), CallType);
 4474                                                   TheCall->getCallee());
 4478             TheCall->getCallee()->getSourceRange(), CallType);
 4516   DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
 5026   Expr *Callee = TheCall->getCallee();
 5394       cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
 5592   Expr *Fn = TheCall->getCallee();
 5674   Expr *Func = Call->getCallee();
 5951                                          TheCall->getCallee()->getBeginLoc(),
 6181   DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
tools/clang/lib/Sema/SemaDecl.cpp
10976       Expr *Callee = E->getCallee();
tools/clang/lib/Sema/SemaDeclCXX.cpp
 3718       Expr *Callee = E->getCallee();
 3740       Expr *Callee = E->getCallee();
tools/clang/lib/Sema/SemaExpr.cpp
17509   Expr *CalleeExpr = E->getCallee();
17818       E = call->getCallee();
tools/clang/lib/Sema/SemaExprCXX.cpp
 3564   auto Callee = dyn_cast<ImplicitCastExpr>(TheCall->getCallee());
 6377       Expr *Callee = Call->getCallee()->IgnoreParens();
 7859           OverloadResolution[OE] = CE->getCallee();
tools/clang/lib/Sema/SemaOpenMP.cpp
14405         OOLoc = MCE->getCallee()->getExprLoc();
tools/clang/lib/Sema/TreeTransform.h
 9651   ExprResult Callee = getDerived().TransformExpr(E->getCallee());
 9663       Callee.get() == E->getCallee() &&
 9810     auto *Callee = dyn_cast<DeclRefExpr>(Op->getCallee()->IgnoreImplicit());
10277   ExprResult Callee = getDerived().TransformExpr(E->getCallee());
10297       Callee.get() == E->getCallee() &&
10335   ExprResult Callee = getDerived().TransformExpr(E->getCallee());
10352       Callee.get() == E->getCallee() &&
tools/clang/lib/Serialization/ASTWriterStmt.cpp
  684   Record.AddStmt(E->getCallee());
tools/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp
  988                      CE->getCallee()->getSourceRange());
tools/clang/tools/extra/clang-tidy/misc/UnusedParametersCheck.cpp
  103               dyn_cast<DeclRefExpr>(Call->getCallee()->IgnoreImplicit())) {
tools/clang/tools/extra/clang-tidy/modernize/LoopConvertUtils.cpp
  601       dyn_cast<MemberExpr>(MemberCall->getCallee()->IgnoreParenImpCasts());