/external/clang/lib/StaticAnalyzer/Checkers/ |
D | VirtualCallChecker.cpp | 71 const FunctionDecl *FD = WLUnit->getDirectCallee(); in Enqueue() 90 const FunctionDecl *FD = WLUnit->getDirectCallee(); in Execute() 162 const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CE->getDirectCallee()); in VisitCXXMemberCallExpr() 176 os << *CE->getDirectCallee(); in ReportVirtualCall() 180 os << " <-- " << *visitingCallExpr->getDirectCallee(); in ReportVirtualCall() 184 const FunctionDecl *FD = (*(I-1))->getDirectCallee(); in ReportVirtualCall()
|
D | CStringSyntaxChecker.cpp | 58 const FunctionDecl *FD = CE->getDirectCallee(); in isStrlen() 136 const FunctionDecl *FD = CE->getDirectCallee(); in VisitCallExpr()
|
D | MallocSizeofChecker.cpp | 93 const FunctionDecl *FD = E->getDirectCallee(); in VisitCallExpr() 223 const FunctionDecl *Callee = i->AllocCall->getDirectCallee(); in checkASTCodeBody()
|
D | ObjCContainersASTChecker.cpp | 86 const FunctionDecl *FD = CE->getDirectCallee(); in getCalleeName()
|
D | CheckSecuritySyntaxOnly.cpp | 118 const FunctionDecl *FD = CE->getDirectCallee(); in VisitCallExpr() 687 const FunctionDecl *FD = CE->getDirectCallee(); in checkUncheckedReturnValue()
|
D | MallocOverflowSecurityChecker.cpp | 311 const FunctionDecl *FD = TheCall->getDirectCallee(); in checkASTCodeBody()
|
D | MacOSKeychainAPIChecker.cpp | 608 const FunctionDecl *funDecl = CE->getDirectCallee(); in VisitNode()
|
D | LocalizationChecker.cpp | 1174 if (const FunctionDecl *FD = CE->getDirectCallee()) { in VisitCallExpr()
|
/external/clang/lib/CodeGen/ |
D | CGCUDABuiltin.cpp | 82 E->getDirectCallee()->getType()->getAs<FunctionProtoType>(), in EmitCUDADevicePrintfCallExpr() 83 E->arguments(), E->getDirectCallee(), in EmitCUDADevicePrintfCallExpr()
|
D | CGExprCXX.cpp | 64 CE->getDirectCallee()); in commonEmitCXXMemberOrOperatorCall()
|
/external/clang/lib/Analysis/ |
D | CallGraph.cpp | 42 if (FunctionDecl *CalleeDecl = CE->getDirectCallee()) in getDeclFromCall()
|
D | ThreadSafetyCommon.cpp | 355 const FunctionDecl *FD = CE->getDirectCallee()->getMostRecentDecl(); in translateCallExpr() 358 LRCallCtx.AttrDecl = CE->getDirectCallee(); in translateCallExpr()
|
D | Consumed.cpp | 749 const FunctionDecl *FunDecl = Call->getDirectCallee(); in VisitCallExpr() 828 dyn_cast_or_null<FunctionDecl>(Call->getDirectCallee()); in VisitCXXOperatorCallExpr()
|
D | UninitializedValues.cpp | 443 if (FunctionDecl *FD = CE->getDirectCallee()) { in VisitCallExpr()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | CallEvent.cpp | 413 const FunctionDecl *D = getOriginExpr()->getDirectCallee(); in getDecl() 426 const FunctionDecl *D = CE->getDirectCallee(); in getDecl() 1042 const FunctionDecl *DirectCallee = OpCE->getDirectCallee(); in getSimpleCall()
|
/external/v8/tools/clang/plugins/ |
D | CheckIPCVisitor.cpp | 75 const FunctionDecl* callee_decl = call_expr->getDirectCallee(); in ValidateWriteParam()
|
/external/v8/tools/clang/traffic_annotation_extractor/ |
D | traffic_annotation_extractor.cpp | 192 call_expr->getDirectCallee()->getQualifiedNameAsString(); in AddFunction()
|
/external/clang/lib/ARCMigrate/ |
D | TransUnbridgedCasts.cpp | 136 if (FunctionDecl *FD = callE->getDirectCallee()) { in transformNonObjCToObjCCast()
|
D | Transforms.cpp | 92 if (const FunctionDecl *FD = callE->getDirectCallee()) { in isPlusOne()
|
/external/clang/lib/Sema/ |
D | SemaChecking.cpp | 495 << Call->getDirectCallee() << Arg0->getSourceRange(); in checkOpenCLPipeArg() 504 switch (Call->getDirectCallee()->getBuiltinID()) { in checkOpenCLPipeArg() 552 << Call->getDirectCallee() << S.Context.getPointerType(EltTy) in checkOpenCLPipePacketType() 585 << Call->getDirectCallee() << S.Context.OCLReserveIDTy in SemaBuiltinRWPipe() 595 << Call->getDirectCallee() << S.Context.UnsignedIntTy in SemaBuiltinRWPipe() 606 << Call->getDirectCallee() << Call->getSourceRange(); in SemaBuiltinRWPipe() 629 << Call->getDirectCallee() << S.Context.UnsignedIntTy in SemaBuiltinReserveRWPipe() 652 << Call->getDirectCallee() << S.Context.OCLReserveIDTy in SemaBuiltinCommitRWPipe() 671 << Call->getDirectCallee() << Call->getArg(0)->getSourceRange(); in SemaBuiltinPipePackets() 687 << Call->getDirectCallee() << Call->getSourceRange(); in SemaOpenCLBuiltinToAddr() [all …]
|
D | SemaStmt.cpp | 1522 FunctionDecl *FD = Call->getDirectCallee(); in ProcessIterationStmt() 2489 const FunctionDecl *FD = Call->getDirectCallee(); in DiagnoseForRangeReferenceVariableCopies()
|
/external/v8/tools/gcmole/ |
D | gcmole.cc | 133 const clang::FunctionDecl* callee = expr->getDirectCallee(); in VisitCallExpr() 874 clang::FunctionDecl* callee = call->getDirectCallee(); in VisitCallExpr()
|
/external/bcc/src/cc/frontends/clang/ |
D | b_frontend_action.cc | 117 if (std::get<0>(p) == E->getDirectCallee()) { in VisitCallExpr() 124 tuple<Decl *, int> pt = make_tuple(E->getDirectCallee(), nb_derefs_); in VisitCallExpr()
|
/external/clang/unittests/Tooling/ |
D | RefactoringTest.cpp | 395 if (Call->getDirectCallee()->getName() == "F") { in VisitCallExpr()
|
/external/clang/include/clang/AST/ |
D | Expr.h | 2198 FunctionDecl *getDirectCallee(); 2199 const FunctionDecl *getDirectCallee() const { in getDirectCallee() function 2200 return const_cast<CallExpr*>(this)->getDirectCallee(); in getDirectCallee()
|