HomeSort by relevance Sort by last modified time
    Searched refs:FunctionDecl (Results 76 - 100 of 264) sorted by null

1 2 34 5 6 7 8 91011

  /external/clang/lib/AST/
Comment.cpp 158 const FunctionDecl *FD = cast<FunctionDecl>(CommentDecl);
191 const FunctionDecl *FD = FTD->getTemplatedDecl();
MicrosoftMangle.cpp 104 static const FunctionDecl *getStructor(const NamedDecl *ND) {
108 const auto *FD = cast<FunctionDecl>(ND);
295 void mangleFunctionEncoding(const FunctionDecl *FD, bool ShouldMangle);
310 const FunctionDecl *D = nullptr,
350 void mangleFunctionClass(const FunctionDecl *FD);
365 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
433 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
441 void MicrosoftCXXNameMangler::mangleFunctionEncoding(const FunctionDecl *FD
    [all...]
  /external/v8/tools/gcmole/
gcmole.cc 133 const clang::FunctionDecl* callee = expr->getDirectCallee();
145 void AnalyzeFunction(const clang::FunctionDecl* f) {
150 const clang::FunctionDecl* body = NULL;
224 virtual bool VisitFunctionDecl(clang::FunctionDecl* decl) {
255 const clang::FunctionDecl* decl) {
874 clang::FunctionDecl* callee = call->getDirectCallee();
    [all...]
  /external/clang/include/clang/AST/
DeclCXX.h 56 AnyFunctionDecl(FunctionDecl *FD) : Function(FD) { }
634 friend void FunctionDecl::setPure(bool);
    [all...]
GlobalDecl.h 28 /// a VarDecl, a FunctionDecl or a BlockDecl.
43 GlobalDecl(const FunctionDecl *D) { Init(D); }
ASTContext.h 181 llvm::DenseMap<const FunctionDecl*, FunctionDecl*>
297 FunctionDecl *cudaConfigureCallDecl;
788 FunctionDecl *getClassScopeSpecializationPattern(const FunctionDecl *FD);
790 void setClassScopeSpecializationPattern(FunctionDecl *FD,
791 FunctionDecl *Pattern);
    [all...]
  /external/clang/include/clang/Sema/
CodeCompleteConsumer.h 146 class FunctionDecl;
837 FunctionDecl *Function;
849 OverloadCandidate(FunctionDecl *Function)
863 FunctionDecl *getFunction() const;
    [all...]
Sema.h 115 class FunctionDecl;
551 typedef llvm::MapVector<const FunctionDecl *, LateParsedTemplate *>
    [all...]
  /external/clang/lib/CodeGen/
CGCall.h 38 class FunctionDecl;
CodeGenFunction.cpp 442 static void GenOpenCLArgMetadata(const FunctionDecl *FD, llvm::Function *Fn,
595 void CodeGenFunction::EmitOpenCLKernelMetadata(const FunctionDecl *FD,
640 if (auto *FD = dyn_cast_or_null<FunctionDecl>(F))
667 if (const auto *FD = dyn_cast_or_null<FunctionDecl>(D))
714 if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(D)) {
737 if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(D))
744 if (const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(D))
    [all...]
ModuleBuilder.cpp 104 if (auto FD = dyn_cast<FunctionDecl>(D)) {
166 void HandleInlineFunctionDefinition(FunctionDecl *D) override {
  /external/clang/lib/Index/
IndexDecl.cpp 59 if (auto *FD = dyn_cast<FunctionDecl>(DC)) {
68 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
94 bool VisitFunctionDecl(const FunctionDecl *D) {
  /external/clang/lib/Sema/
SemaAccess.cpp 110 } else if (isa<FunctionDecl>(DC)) {
111 FunctionDecl *Function = cast<FunctionDecl>(DC);
142 SmallVector<FunctionDecl*, 4> Functions;
362 FunctionDecl *Context,
363 FunctionDecl *Friend) {
493 FunctionDecl *Friend) {
496 for (SmallVectorImpl<FunctionDecl*>::const_iterator
517 for (SmallVectorImpl<FunctionDecl*>::const_iterator
565 assert(isa<FunctionDecl>(Friend) && "unknown friend decl kind")
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
AnalyzerStatsChecker.cpp 97 if (isa<FunctionDecl>(D) || isa<ObjCMethodDecl>(D)) {
PointerArithChecker.cpp 51 AllocKind getKindOfNewOp(const CXXNewExpr *NE, const FunctionDecl *FD) const;
93 const FunctionDecl *FD) const {
223 const FunctionDecl *FD = C.getCalleeDecl(CE);
245 const FunctionDecl *FD = NE->getOperatorNew();
MallocSizeofChecker.cpp 93 const FunctionDecl *FD = E->getDirectCallee();
223 const FunctionDecl *Callee = i->AllocCall->getDirectCallee();
UnreachableCodeChecker.cpp 91 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
  /external/clang/lib/StaticAnalyzer/Frontend/
ModelInjector.cpp 30 Stmt *ModelInjector::getBody(const FunctionDecl *D) {
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CallEvent.h 249 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
419 /// FunctionDecl.
432 // a FunctionDecl.
433 const FunctionDecl *getDecl() const override {
434 return cast<FunctionDecl>(CallEvent::getDecl());
438 const FunctionDecl *FD = getDecl();
439 // Note that the AnalysisDeclContext will have the FunctionDecl with
486 const FunctionDecl *getDecl() const override;
618 CXXInstanceCall(const FunctionDecl *D, ProgramStateRef St
    [all...]
  /external/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp 97 FunctionDecl *MsgSendFunctionDecl;
98 FunctionDecl *MsgSendSuperFunctionDecl;
99 FunctionDecl *MsgSendStretFunctionDecl;
100 FunctionDecl *MsgSendSuperStretFunctionDecl;
101 FunctionDecl *MsgSendFpretFunctionDecl;
102 FunctionDecl *GetClassFunctionDecl;
103 FunctionDecl *GetMetaClassFunctionDecl;
104 FunctionDecl *GetSuperClassFunctionDecl;
105 FunctionDecl *SelGetUidFunctionDecl;
106 FunctionDecl *CFStringFunctionDecl
    [all...]
  /external/bcc/src/cc/frontends/clang/
b_frontend_action.cc 344 if (FunctionDecl *F = dyn_cast<FunctionDecl>(Call->getCalleeDecl())) {
618 void BTypeVisitor::genParamDirectAssign(FunctionDecl *D, string& preamble,
637 void BTypeVisitor::genParamIndirectAssign(FunctionDecl *D, string& preamble,
664 void BTypeVisitor::rewriteFuncParam(FunctionDecl *D) {
694 bool BTypeVisitor::VisitFunctionDecl(FunctionDecl *D) {
    [all...]
  /development/vndk/tools/header-checker/src/dumper/
abi_wrappers.h 151 const clang::FunctionDecl *decl, repr::ModuleIR *module,
157 const clang::FunctionDecl *function_decl_;
  /development/vndk/tools/header-checker/src/repr/protobuf/
converter.cpp 274 abi_dump::FunctionDecl *old_function = function_diff.mutable_old();
275 abi_dump::FunctionDecl *new_function = function_diff.mutable_new_();
  /external/clang/lib/StaticAnalyzer/Core/
IssueHash.cpp 32 static std::string GetSignature(const FunctionDecl *Target) {
101 DeclName = GetSignature(dyn_cast_or_null<FunctionDecl>(ND));
  /external/v8/tools/clang/rewrite_to_chrome_style/
RewriteToChromeStyle.cpp 81 AST_MATCHER(clang::FunctionDecl, isOverloadedOperator) {
91 clang::ast_matchers::internal::Matcher<clang::FunctionDecl>,
142 bool Contains(const clang::FunctionDecl& method) const {
223 AST_MATCHER_P(clang::FunctionDecl,
273 const clang::FunctionDecl& decl) {
445 bool IsBlacklistedFunction(const clang::FunctionDecl& decl) {
478 AST_MATCHER(clang::FunctionDecl, isBlacklistedFunction) {
793 AST_MATCHER(clang::FunctionDecl, shouldPrefixFunctionName) {
798 bool GetNameForDecl(const clang::FunctionDecl& decl,
    [all...]

Completed in 1648 milliseconds

1 2 34 5 6 7 8 91011