Home
last modified time | relevance | path

Searched refs:getDirectCallee (Results 1 – 23 of 23) sorted by relevance

/external/clang/lib/StaticAnalyzer/Checkers/
DVirtualCallChecker.cpp70 const FunctionDecl *FD = WLUnit->getDirectCallee(); in Enqueue()
89 const FunctionDecl *FD = WLUnit->getDirectCallee(); in Execute()
155 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CE->getDirectCallee()); in VisitCXXMemberCallExpr()
168 os << *CE->getDirectCallee(); in ReportVirtualCall()
172 os << " <-- " << *visitingCallExpr->getDirectCallee(); in ReportVirtualCall()
176 const FunctionDecl *FD = (*(I-1))->getDirectCallee(); in ReportVirtualCall()
DCStringSyntaxChecker.cpp58 const FunctionDecl *FD = CE->getDirectCallee(); in isStrlen()
135 const FunctionDecl *FD = CE->getDirectCallee(); in VisitCallExpr()
DMallocSizeofChecker.cpp93 const FunctionDecl *FD = E->getDirectCallee(); in VisitCallExpr()
220 const FunctionDecl *Callee = i->AllocCall->getDirectCallee(); in checkASTCodeBody()
DObjCContainersASTChecker.cpp88 const FunctionDecl *FD = CE->getDirectCallee(); in getCalleeName()
DMallocOverflowSecurityChecker.cpp242 const FunctionDecl *FD = TheCall->getDirectCallee(); in checkASTCodeBody()
DCheckSecuritySyntaxOnly.cpp115 const FunctionDecl *FD = CE->getDirectCallee(); in VisitCallExpr()
698 const FunctionDecl *FD = CE->getDirectCallee(); in checkUncheckedReturnValue()
DMacOSKeychainAPIChecker.cpp676 const FunctionDecl *funDecl = CE->getDirectCallee(); in VisitNode()
/external/clang/lib/Analysis/
DCallGraph.cpp38 if (FunctionDecl *CalleeDecl = CE->getDirectCallee()) in VisitCallExpr()
DThreadSafety.cpp342 cast<FunctionDecl>(CE->getDirectCallee()->getMostRecentDecl()); in buildSExpr()
344 CallingContext LRCallCtx(CE->getDirectCallee()); in buildSExpr()
DCFG.cpp1404 if (FunctionDecl *FD = C->getDirectCallee()) { in VisitCallExpr()
/external/clang/lib/StaticAnalyzer/Core/
DCallEvent.cpp362 const FunctionDecl *D = getOriginExpr()->getDirectCallee(); in getDecl()
375 const FunctionDecl *D = CE->getDirectCallee(); in getDecl()
844 const FunctionDecl *DirectCallee = OpCE->getDirectCallee(); in getSimpleCall()
/external/clang/unittests/Tooling/
DRefactoringTest.cpp283 if (Call->getDirectCallee()->getName() == "F") { in VisitCallExpr()
/external/clang/lib/ARCMigrate/
DTransUnbridgedCasts.cpp119 if (FunctionDecl *FD = callE->getDirectCallee()) { in transformNonObjCToObjCCast()
DTransforms.cpp80 if (const FunctionDecl *FD = callE->getDirectCallee()) { in isPlusOneAssign()
/external/v8/tools/gcmole/
Dgcmole.cc134 const clang::FunctionDecl* callee = expr->getDirectCallee(); in VisitCallExpr()
862 clang::FunctionDecl* callee = call->getDirectCallee(); in VisitCallExpr()
/external/clang/include/clang/AST/
DExpr.h2078 FunctionDecl *getDirectCallee();
2079 const FunctionDecl *getDirectCallee() const { in getDirectCallee() function
2080 return const_cast<CallExpr*>(this)->getDirectCallee(); in getDirectCallee()
/external/clang/lib/Sema/
DSemaObjCProperty.cpp1080 if (const FunctionDecl *FuncDecl = CXXCE->getDirectCallee()) in ActOnPropertyImplDecl()
DSemaExprCXX.cpp4863 Call, Call->getDirectCallee())) in ActOnDecltypeExpression()
4938 Locations.push_back(OpCall->getDirectCallee()->getLocation()); in ActOnStartCXXMemberReference()
DSemaChecking.cpp906 FunctionDecl *Fn = E->getDirectCallee(); in checkBuiltinArgument()
3337 const FunctionDecl *FD = CE->getDirectCallee(); in getStrlenExprArg()
DSemaExprObjC.cpp2667 if (FunctionDecl *fn = e->getDirectCallee()) in VisitCallExpr()
/external/clang/lib/CodeGen/
DCodeGenModule.cpp943 const FunctionDecl *FD = E->getDirectCallee(); in TraverseCallExpr()
DCGBuiltin.cpp1531 const FunctionDecl *FD = E->getDirectCallee(); in EmitARMBuiltinExpr()
/external/clang/lib/AST/
DExpr.cpp1021 FunctionDecl *CallExpr::getDirectCallee() { in getDirectCallee() function in CallExpr