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

/external/clang/include/clang/AST/
H A DRedeclarable.h66 decl_type *getPreviousDecl() { function in class:clang::Redeclarable
71 const decl_type *getPreviousDecl() const { function in class:clang::Redeclarable
73 static_cast<const decl_type*>(this))->getPreviousDecl();
80 while (D->getPreviousDecl())
81 D = D->getPreviousDecl();
89 while (D->getPreviousDecl())
90 D = D->getPreviousDecl();
H A DDeclBase.h707 /// \brief Implementation of getPreviousDecl(), to be overridden by any
767 Decl *getPreviousDecl() { return getPreviousDeclImpl(); } function in class:clang::Decl
771 const Decl *getPreviousDecl() const { function in class:clang::Decl
838 Decl *Prev = getPreviousDecl();
H A DDeclTemplate.h537 return getPreviousDecl();
716 using redeclarable_base::getPreviousDecl;
826 FunctionTemplateDecl *getPreviousDecl() { function in class:clang::TemplateParameterList::FunctionTemplateDecl
828 RedeclarableTemplateDecl::getPreviousDecl());
833 const FunctionTemplateDecl *getPreviousDecl() const { function in class:clang::TemplateParameterList::FunctionTemplateDecl
835 RedeclarableTemplateDecl::getPreviousDecl());
1455 assert(Recent->isInjectedClassName() && Recent->getPreviousDecl());
1456 Recent = Recent->getPreviousDecl();
1912 ClassTemplateDecl *getPreviousDecl() { function in class:clang::TemplateParameterList::ClassTemplateDecl
1914 RedeclarableTemplateDecl::getPreviousDecl());
1919 const ClassTemplateDecl *getPreviousDecl() const { function in class:clang::TemplateParameterList::ClassTemplateDecl
2153 TypeAliasTemplateDecl *getPreviousDecl() { function in class:clang::TemplateParameterList::TypeAliasTemplateDecl
2160 const TypeAliasTemplateDecl *getPreviousDecl() const { function in class:clang::TemplateParameterList::TypeAliasTemplateDecl
2765 VarTemplateDecl *getPreviousDecl() { function in class:clang::TemplateParameterList::VarTemplateDecl
2772 const VarTemplateDecl *getPreviousDecl() const { function in class:clang::TemplateParameterList::VarTemplateDecl
[all...]
H A DDeclCXX.h640 const CXXRecordDecl *getPreviousDecl() const { function in class:clang::CXXRecordDecl
641 return cast_or_null<CXXRecordDecl>(RecordDecl::getPreviousDecl());
643 CXXRecordDecl *getPreviousDecl() { function in class:clang::CXXRecordDecl
644 return cast_or_null<CXXRecordDecl>(RecordDecl::getPreviousDecl());
/external/clang/lib/AST/
H A DASTDumper.cpp577 return D->getPreviousDecl();
581 static const Decl *getPreviousDecl(const Decl *D) { function
722 if (const Decl *Prev = getPreviousDecl(D))

Completed in 132 milliseconds