Searched refs:getCallee (Results 1 - 25 of 43) sorted by relevance

12

/external/clang/lib/CodeGen/
H A DCGCUDARuntime.cpp41 if (const ImplicitCastExpr *CE = dyn_cast<ImplicitCastExpr>(E->getCallee())) {
47 llvm::Value *Callee = CGF.EmitScalarExpr(E->getCallee());
48 CGF.EmitCall(E->getCallee()->getType(), Callee, E->getLocStart(),
H A DCGExpr.cpp2955 if (E->getCallee()->getType()->isBlockPointerType())
2975 dyn_cast<CXXPseudoDestructorExpr>(E->getCallee()->IgnoreParens())) {
3022 EmitScalarExpr(E->getCallee());
3028 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
3029 return EmitCall(E->getCallee()->getType(), Callee, E->getLocStart(),
H A DCGExprCXX.cpp78 const Expr *callee = CE->getCallee()->IgnoreParens();
237 cast<BinaryOperator>(E->getCallee()->IgnoreParens());
H A DCGBlocks.cpp934 E->getCallee()->getType()->getAs<BlockPointerType>();
936 llvm::Value *Callee = EmitScalarExpr(E->getCallee());
/external/clang/examples/analyzer-plugin/
H A DMainCallChecker.cpp21 const Expr *Callee = CE->getCallee();
/external/clang/lib/ARCMigrate/
H A DTransGCCalls.cpp46 Expr *CEE = E->getCallee()->IgnoreParenImpCasts();
/external/clang/lib/StaticAnalyzer/Core/
H A DCheckerContext.cpp24 const Expr *Callee = CE->getCallee();
H A DCallEvent.cpp389 return getSVal(getOriginExpr()->getCallee()).getAsFunctionDecl();
402 return getSVal(CE->getCallee()).getAsFunctionDecl();
525 if (const MemberExpr *ME = dyn_cast<MemberExpr>(getOriginExpr()->getCallee()))
539 const Expr *Callee = getOriginExpr()->getCallee();
912 } else if (CE->getCallee()->getType()->isBlockPointerType()) {
/external/llvm/include/llvm/IR/
H A DCallSite.h87 return *getCallee();
101 *getCallee() = V;
111 bool isCallee(const Use *U) const { return getCallee() == U; }
323 IterTy getCallee() const { function in class:llvm::CallSiteBase
350 User::op_iterator getCallee() const;
/external/clang/lib/StaticAnalyzer/Checkers/
H A DVirtualCallChecker.cpp143 if (MemberExpr *CME = dyn_cast<MemberExpr>(CE->getCallee())) {
185 SourceRange R = CE->getCallee()->getSourceRange();
H A DCheckSecuritySyntaxOnly.cpp334 CELoc, CE->getCallee()->getSourceRange());
374 CELoc, CE->getCallee()->getSourceRange());
416 CELoc, CE->getCallee()->getSourceRange());
525 CELoc, CE->getCallee()->getSourceRange());
552 CELoc, CE->getCallee()->getSourceRange());
624 CE->getCallee()->getSourceRange());
652 "instead", CELoc, CE->getCallee()->getSourceRange());
675 CELoc, CE->getCallee()->getSourceRange());
740 CE->getCallee()->getSourceRange());
H A DMallocSizeofChecker.cpp229 Ranges.push_back(i->AllocCall->getCallee()->getSourceRange());
235 PathDiagnosticLocation::createBegin(i->AllocCall->getCallee(),
H A DCallAndMessageChecker.cpp301 const Expr *Callee = CE->getCallee()->IgnoreParens();
H A DRetainCountChecker.cpp1888 SVal X = CurrSt->getSValAsScalarOrLoc(CE->getCallee(), LCtx);
2002 CurrSt->getSValAsScalarOrLoc(cast<CallExpr>(S)->getCallee(), LCtx);
/external/clang/lib/Sema/
H A DSemaChecking.cpp502 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
818 TheCall->getCallee());
831 TheCall->getCallee()->getSourceRange(), CallType);
891 TheCall->getCallee()->getSourceRange(), CallType);
900 TheCall->getCallee());
907 TheCall->getCallee()->getSourceRange(), CallType);
942 DeclRefExpr *DRE =cast<DeclRefExpr>(TheCall->getCallee()->IgnoreParenCasts());
1046 << TheCall->getCallee()->getSourceRange();
1052 << TheCall->getCallee()->getSourceRange();
1237 AtomicExpr *AE = new (Context) AtomicExpr(TheCall->getCallee()
[all...]
H A DSemaExceptionSpec.cpp910 else if (isa<CXXPseudoDestructorExpr>(CE->getCallee()->IgnoreParens()))
/external/clang/lib/Analysis/
H A DCallGraph.cpp46 Expr *CEE = CE->getCallee()->IgnoreParenImpCasts();
H A DThreadSafety.cpp328 LRCallCtx.SelfArrow = isCalleeArrow(CMCE->getCallee());
338 if (NDeref && isCalleeArrow(CMCE->getCallee()))
374 unsigned Sz = buildSExpr(CE->getCallee(), CallCtx);
496 CallCtx.SelfArrow = isCalleeArrow(CE->getCallee());
2153 MemberExpr *ME = dyn_cast<MemberExpr>(CE->getCallee());
H A DCFG.cpp1715 QualType calleeType = C->getCallee()->getType();
1717 QualType boundType = Expr::findBoundMemberType(C->getCallee());
1748 if (!CanThrow(C->getCallee(), *Context))
1756 return Visit(C->getCallee());
H A DThreadSafetyCommon.cpp211 til::SExpr *E = translate(CE->getCallee(), Ctx);
/external/clang/lib/AST/
H A DExpr.cpp1150 Expr *CEE = getCallee()->IgnoreParenImpCasts();
1212 const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(getCallee());
1237 QualType CalleeType = getCallee()->getType();
1244 CalleeType = Expr::findBoundMemberType(getCallee());
1254 SourceLocation begin = getCallee()->getLocStart();
2122 Loc = CE->getCallee()->getLocStart();
2123 R1 = CE->getCallee()->getSourceRange();
H A DExprCXX.cpp538 const Expr *Callee = getCallee()->IgnoreParens();
551 dyn_cast<MemberExpr>(getCallee()->IgnoreParens()))
/external/chromium_org/tools/clang/blink_gc_plugin/
H A DBlinkGCPlugin.cpp343 Expr* callee = call->getCallee();
443 MemberExpr* callee = dyn_cast<MemberExpr>(call->getCallee());
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DPathDiagnostic.h578 const Decl *getCallee() const { return Callee; } function in class:clang::ento::PathDiagnosticCallPiece
/external/clang/include/clang/ASTMatchers/
H A DASTMatchers.h1824 const Expr *ExprNode = Node.getCallee();

Completed in 1657 milliseconds

12