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 128 decl_type *getPreviousDecl() {
133 const decl_type *getPreviousDecl() const {
135 static_cast<const decl_type*>(this))->getPreviousDecl();
142 while (D->getPreviousDecl())
143 D = D->getPreviousDecl();
151 while (D->getPreviousDecl())
152 D = D->getPreviousDecl();
DeclBase.h 720 /// \brief Implementation of getPreviousDecl(), to be overridden by any
786 Decl *getPreviousDecl() { return getPreviousDeclImpl(); }
790 const Decl *getPreviousDecl() const {
796 return getPreviousDecl() == nullptr;
869 Decl *Prev = getPreviousDecl();
902 Decl *Prev = getPreviousDecl();
    [all...]
DeclTemplate.h 538 return getPreviousDecl();
721 using redeclarable_base::getPreviousDecl;
834 FunctionTemplateDecl *getPreviousDecl() {
836 static_cast<RedeclarableTemplateDecl *>(this)->getPreviousDecl());
841 const FunctionTemplateDecl *getPreviousDecl() const {
843 static_cast<const RedeclarableTemplateDecl *>(this)->getPreviousDecl());
    [all...]
DeclCXX.h 272 *this = Canon->getPreviousDecl()->DefinitionData.update();
652 CXXRecordDecl *getPreviousDecl() {
654 static_cast<RecordDecl *>(this)->getPreviousDecl());
656 const CXXRecordDecl *getPreviousDecl() const {
657 return const_cast<CXXRecordDecl*>(this)->getPreviousDecl();
    [all...]

Completed in 478 milliseconds