HomeSort by relevance Sort by last modified time
    Searched defs:getPreviousDecl (Results 1 - 5 of 5) 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 707 /// \brief Implementation of getPreviousDecl(), to be overridden by any
767 Decl *getPreviousDecl() { return getPreviousDeclImpl(); }
771 const Decl *getPreviousDecl() const {
838 Decl *Prev = getPreviousDecl();
    [all...]
DeclTemplate.h 537 return getPreviousDecl();
716 using redeclarable_base::getPreviousDecl;
826 FunctionTemplateDecl *getPreviousDecl() {
828 RedeclarableTemplateDecl::getPreviousDecl());
833 const FunctionTemplateDecl *getPreviousDecl() const {
835 RedeclarableTemplateDecl::getPreviousDecl());
    [all...]
DeclCXX.h 640 const CXXRecordDecl *getPreviousDecl() const {
641 return cast_or_null<CXXRecordDecl>(RecordDecl::getPreviousDecl());
643 CXXRecordDecl *getPreviousDecl() {
644 return cast_or_null<CXXRecordDecl>(RecordDecl::getPreviousDecl());
    [all...]
  /external/clang/lib/AST/
ASTDumper.cpp 577 return D->getPreviousDecl();
581 static const Decl *getPreviousDecl(const Decl *D) {
722 if (const Decl *Prev = getPreviousDecl(D))
    [all...]

Completed in 276 milliseconds