HomeSort by relevance Sort by last modified time
    Searched defs:getPreviousDecl (Results 1 - 4 of 4) sorted by null

  /external/clang/include/clang/AST/
Redeclarable.h 66 decl_type *getPreviousDecl() {
71 const decl_type *getPreviousDecl() const {
73 static_cast<const decl_type*>(this))->getPreviousDecl();
80 while (D->getPreviousDecl())
81 D = D->getPreviousDecl();
89 while (D->getPreviousDecl())
90 D = D->getPreviousDecl();
DeclBase.h 680 /// \brief Implementation of getPreviousDecl(), to be overridden by any
740 Decl *getPreviousDecl() { return getPreviousDeclImpl(); }
744 const Decl *getPreviousDecl() const {
    [all...]
DeclTemplate.h 507 return getPreviousDecl();
686 using redeclarable_base::getPreviousDecl;
792 FunctionTemplateDecl *getPreviousDecl() {
794 RedeclarableTemplateDecl::getPreviousDecl());
799 const FunctionTemplateDecl *getPreviousDecl() const {
801 RedeclarableTemplateDecl::getPreviousDecl());
    [all...]
DeclCXX.h 682 const CXXRecordDecl *getPreviousDecl() const {
683 return cast_or_null<CXXRecordDecl>(RecordDecl::getPreviousDecl());
685 CXXRecordDecl *getPreviousDecl() {
686 return cast_or_null<CXXRecordDecl>(RecordDecl::getPreviousDecl());
    [all...]

Completed in 87 milliseconds