HomeSort by: relevance | last modified time | path
    Searched defs:getPreviousDecl (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Redeclarable.h 203 decl_type *getPreviousDecl() {
208 const decl_type *getPreviousDecl() const {
210 static_cast<const decl_type*>(this))->getPreviousDecl();
DeclTemplate.h 758 return getPreviousDecl();
947 using redeclarable_base::getPreviousDecl;
1055 FunctionTemplateDecl *getPreviousDecl() {
1057 static_cast<RedeclarableTemplateDecl *>(this)->getPreviousDecl());
1059 const FunctionTemplateDecl *getPreviousDecl() const {
1061 static_cast<const RedeclarableTemplateDecl *>(this)->getPreviousDecl());
2331 ClassTemplateDecl *getPreviousDecl() {
2333 static_cast<RedeclarableTemplateDecl *>(this)->getPreviousDecl());
2335 const ClassTemplateDecl *getPreviousDecl() const {
2338 this)->getPreviousDecl());
    [all...]
DeclBase.h 916 /// Implementation of getPreviousDecl(), to be overridden by any
984 Decl *getPreviousDecl() { return getPreviousDeclImpl(); }
988 const Decl *getPreviousDecl() const {
994 return getPreviousDecl() == nullptr;
1075 Decl *Prev = getPreviousDecl();
1114 Decl *Prev = getPreviousDecl();
DeclCXX.h 501 CXXRecordDecl *getPreviousDecl() {
503 static_cast<RecordDecl *>(this)->getPreviousDecl());
506 const CXXRecordDecl *getPreviousDecl() const {
507 return const_cast<CXXRecordDecl*>(this)->getPreviousDecl();
524 assert(Recent->getPreviousDecl());
525 Recent = Recent->getPreviousDecl();
3035 using redeclarable_base::getPreviousDecl;
3197 return getPreviousDecl();
3227 using redeclarable_base::getPreviousDecl;

Completed in 44 milliseconds