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 67 decl_type *getPreviousDecl() {
72 const decl_type *getPreviousDecl() const {
74 static_cast<const decl_type*>(this))->getPreviousDecl();
81 while (D->getPreviousDecl())
82 D = D->getPreviousDecl();
90 while (D->getPreviousDecl())
91 D = D->getPreviousDecl();
DeclTemplate.h 491 return getPreviousDecl();
669 using redeclarable_base::getPreviousDecl;
774 FunctionTemplateDecl *getPreviousDecl() {
776 RedeclarableTemplateDecl::getPreviousDecl());
781 const FunctionTemplateDecl *getPreviousDecl() const {
783 RedeclarableTemplateDecl::getPreviousDecl());
    [all...]
DeclBase.h 679 /// \brief Implementation of getPreviousDecl(), to be overridden by any
739 Decl *getPreviousDecl() { return getPreviousDeclImpl(); }
743 const Decl *getPreviousDecl() const {
    [all...]
DeclCXX.h 683 const CXXRecordDecl *getPreviousDecl() const {
684 return cast_or_null<CXXRecordDecl>(RecordDecl::getPreviousDecl());
686 CXXRecordDecl *getPreviousDecl() {
687 return cast_or_null<CXXRecordDecl>(RecordDecl::getPreviousDecl());
    [all...]

Completed in 60 milliseconds