Searched defs:getPreviousDecl (Results 1 - 4 of 4) sorted by relevance

/external/clang/include/clang/AST/
H A DRedeclarable.h144 decl_type *getPreviousDecl() { function in class:clang::Redeclarable
149 const decl_type *getPreviousDecl() const { function in class:clang::Redeclarable
151 static_cast<const decl_type*>(this))->getPreviousDecl();
H A DDeclTemplate.h637 return getPreviousDecl();
809 using redeclarable_base::getPreviousDecl;
925 FunctionTemplateDecl *getPreviousDecl() { function in class:clang::FunctionTemplateDecl
927 static_cast<RedeclarableTemplateDecl *>(this)->getPreviousDecl());
932 const FunctionTemplateDecl *getPreviousDecl() const { function in class:clang::FunctionTemplateDecl
934 static_cast<const RedeclarableTemplateDecl *>(this)->getPreviousDecl());
1609 assert(Recent->isInjectedClassName() && Recent->getPreviousDecl());
1610 Recent = Recent->getPreviousDecl();
2030 ClassTemplateDecl *getPreviousDecl() { function in class:clang::ClassTemplateDecl
2032 static_cast<RedeclarableTemplateDecl *>(this)->getPreviousDecl());
2037 const ClassTemplateDecl *getPreviousDecl() const { function in class:clang::ClassTemplateDecl
2259 TypeAliasTemplateDecl *getPreviousDecl() { function in class:clang::TypeAliasTemplateDecl
2266 const TypeAliasTemplateDecl *getPreviousDecl() const { function in class:clang::TypeAliasTemplateDecl
2839 VarTemplateDecl *getPreviousDecl() { function in class:clang::VarTemplateDecl
2846 const VarTemplateDecl *getPreviousDecl() const { function in class:clang::VarTemplateDecl
[all...]
H A DDeclBase.h777 /// \brief Implementation of getPreviousDecl(), to be overridden by any
843 Decl *getPreviousDecl() { return getPreviousDeclImpl(); } function
847 const Decl *getPreviousDecl() const { function
853 return getPreviousDecl() == nullptr;
930 Decl *Prev = getPreviousDecl();
963 Decl *Prev = getPreviousDecl();
H A DDeclCXX.h661 CXXRecordDecl *getPreviousDecl() { function in class:clang::CXXRecordDecl
663 static_cast<RecordDecl *>(this)->getPreviousDecl());
665 const CXXRecordDecl *getPreviousDecl() const { function in class:clang::CXXRecordDecl
666 return const_cast<CXXRecordDecl*>(this)->getPreviousDecl();
2768 using redeclarable_base::getPreviousDecl;
2851 return getPreviousDecl();
2876 using redeclarable_base::getPreviousDecl;

Completed in 156 milliseconds