/external/clang/lib/CodeGen/ |
D | CGCUDARuntime.cpp | 40 if (const ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E->getCallee())) { in EmitCUDAKernelCallExpr() 46 llvm::Value *Callee = CGF.EmitScalarExpr(E->getCallee()); in EmitCUDAKernelCallExpr() 47 CGF.EmitCall(E->getCallee()->getType(), Callee, ReturnValue, in EmitCUDAKernelCallExpr()
|
D | CGExpr.cpp | 2400 if (E->getCallee()->getType()->isBlockPointerType()) in EmitCallExpr() 2420 = dyn_cast<CXXPseudoDestructorExpr>(E->getCallee()->IgnoreParens())) { in EmitCallExpr() 2467 EmitScalarExpr(E->getCallee()); in EmitCallExpr() 2473 llvm::Value *Callee = EmitScalarExpr(E->getCallee()); in EmitCallExpr() 2474 return EmitCall(E->getCallee()->getType(), Callee, ReturnValue, in EmitCallExpr()
|
D | CGExprCXX.cpp | 173 const Expr *callee = CE->getCallee()->IgnoreParens(); in EmitCXXMemberCallExpr() 288 cast<BinaryOperator>(E->getCallee()->IgnoreParens()); in EmitCXXMemberPointerCallExpr()
|
/external/llvm/include/llvm/Support/ |
D | CallSite.h | 88 return *getCallee(); in getCalledValue() 102 *getCallee() = V; in setCalledFunction() 109 return getCallee() == &UI.getUse(); in isCallee() 268 IterTy getCallee() const { in getCallee() function 295 User::op_iterator getCallee() const;
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | CheckSecuritySyntaxOnly.cpp | 323 SourceRange R = CE->getCallee()->getSourceRange(); in checkCall_gets() 365 SourceRange R = CE->getCallee()->getSourceRange(); in checkCall_getpw() 408 SourceRange R = CE->getCallee()->getSourceRange(); in checkCall_mktemp() 517 SourceRange R = CE->getCallee()->getSourceRange(); in checkCall_strcpy() 545 SourceRange R = CE->getCallee()->getSourceRange(); in checkCall_strcat() 627 SourceRange R = CE->getCallee()->getSourceRange(); in checkCall_rand() 653 SourceRange R = CE->getCallee()->getSourceRange(); in checkCall_random() 674 SourceRange R = CE->getCallee()->getSourceRange(); in checkCall_vfork() 747 SourceRange R = CE->getCallee()->getSourceRange(); in checkUncheckedReturnValue()
|
D | VirtualCallChecker.cpp | 142 if (MemberExpr *CME = dyn_cast<MemberExpr>(CE->getCallee())) { in VisitCXXMemberCallExpr() 184 SourceRange R = CE->getCallee()->getSourceRange(); in ReportVirtualCall()
|
D | MallocSizeofChecker.cpp | 188 Ranges.push_back(i->AllocCall->getCallee()->getSourceRange()); in checkASTCodeBody() 194 PathDiagnosticLocation::createBegin(i->AllocCall->getCallee(), in checkASTCodeBody()
|
D | AdjustedReturnValueChecker.cpp | 54 const MemRegion *callee = state->getSVal(CE->getCallee(), LCtx).getAsRegion(); in checkPostStmt()
|
D | NoReturnFunctionChecker.cpp | 40 const Expr *Callee = CE->getCallee(); in checkPostStmt()
|
D | AttrNonNullChecker.cpp | 40 SVal X = state->getSVal(CE->getCallee(), LCtx); in checkPreStmt()
|
D | OSAtomicChecker.cpp | 41 const Expr *Callee = CE->getCallee(); in getCalleeName()
|
D | IteratorsChecker.cpp | 286 if (const MemberExpr *ME = dyn_cast<MemberExpr>(CE->getCallee())) { in handleAssign() 570 const MemberExpr *ME = dyn_cast<MemberExpr>(MCE->getCallee()); in checkPreStmt()
|
D | CallAndMessageChecker.cpp | 214 const Expr *Callee = CE->getCallee()->IgnoreParens(); in checkPreStmt()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | ObjCMessage.cpp | 34 const Expr *Callee = FunctionCall->getCallee(); in getResultType() 50 const Expr *Fun = CallE.get<const CallExpr *>()->getCallee()->IgnoreParens(); in getFunctionCallee()
|
D | CheckerContext.cpp | 24 const Expr *Callee = CE->getCallee(); in getCalleeDecl()
|
D | ExprEngineCallAndReturn.cpp | 160 QualType callee = CE->getCallee()->getType(); in shouldInlineCallExpr() 185 const Expr *Callee = CE->getCallee(); in InlineCall() 426 const Expr *Callee = CE->getCallee()->IgnoreParens(); in VisitCallExpr()
|
D | BugReporterVisitors.cpp | 62 return CE->getCallee(); in GetCalleeExpr()
|
/external/clang/examples/analyzer-plugin/ |
D | MainCallChecker.cpp | 21 const Expr *Callee = CE->getCallee(); in checkPreStmt()
|
/external/clang/lib/ARCMigrate/ |
D | TransGCCalls.cpp | 52 Expr *CEE = E->getCallee()->IgnoreParenImpCasts(); in VisitCallExpr()
|
/external/clang/lib/Sema/ |
D | SemaChecking.cpp | 431 TheCall->getCallee()->getLocStart()); in CheckFunctionCall() 491 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts()); in SemaAtomicOpsOverloaded() 595 << TheCall->getCallee()->getSourceRange(); in SemaAtomicOpsOverloaded() 601 << TheCall->getCallee()->getSourceRange(); in SemaAtomicOpsOverloaded() 771 return Owned(new (Context) AtomicExpr(TheCall->getCallee()->getLocStart(), in SemaAtomicOpsOverloaded() 813 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts()); in SemaBuiltinAtomicOverloaded() 820 << TheCall->getCallee()->getSourceRange(); in SemaBuiltinAtomicOverloaded() 1068 << TheCall->getCallee()->getSourceRange(); in SemaBuiltinAtomicOverloaded() 1168 Expr *Fn = TheCall->getCallee(); in SemaBuiltinVAStart() 1392 TheCall->getCallee()->getLocStart(), in SemaBuiltinShuffleVector() [all …]
|
D | SemaExceptionSpec.cpp | 889 else if (isa<CXXPseudoDestructorExpr>(CE->getCallee()->IgnoreParens())) in canThrow()
|
/external/clang/lib/AST/ |
D | Expr.cpp | 868 Expr *CEE = getCallee()->IgnoreParenImpCasts(); in getCalleeDecl() 930 const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(getCallee()); in isBuiltinCall() 949 QualType CalleeType = getCallee()->getType(); in getCallReturnType() 956 CalleeType = Expr::findBoundMemberType(getCallee()); in getCallReturnType() 966 SourceLocation begin = getCallee()->getLocStart(); in getSourceRange() 978 SourceLocation begin = getCallee()->getLocStart(); in getLocStart() 1805 Loc = CE->getCallee()->getLocStart(); in isUnusedResultAWarning() 1806 R1 = CE->getCallee()->getSourceRange(); in isUnusedResultAWarning()
|
D | StmtPrinter.cpp | 945 PrintExpr(Call->getCallee()); in VisitCallExpr() 1214 PrintExpr(Node->getCallee()); in VisitCUDAKernelCallExpr() 1271 DeclRefExpr *DRE = cast<DeclRefExpr>(Node->getCallee()->IgnoreImpCasts()); in VisitUserDefinedLiteral()
|
D | ExprCXX.cpp | 447 dyn_cast<MemberExpr>(getCallee()->IgnoreParens())) in getImplicitObjectArgument() 456 dyn_cast<MemberExpr>(getCallee()->IgnoreParens())) in getMethodDecl()
|
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/ |
D | PathDiagnostic.h | 488 const Decl *getCallee() const { return Callee; } in getCallee() function
|