HomeSort by relevance Sort by last modified time
    Searched refs:getPreviousDecl (Results 1 - 25 of 27) sorted by null

1 2

  /external/clang/include/clang/AST/
Redeclarable.h 136 decl_type *getPreviousDecl() {
141 const decl_type *getPreviousDecl() const {
143 static_cast<const decl_type*>(this))->getPreviousDecl();
DeclTemplate.h 538 return getPreviousDecl();
710 using redeclarable_base::getPreviousDecl;
826 FunctionTemplateDecl *getPreviousDecl() {
828 static_cast<RedeclarableTemplateDecl *>(this)->getPreviousDecl());
833 const FunctionTemplateDecl *getPreviousDecl() const {
835 static_cast<const RedeclarableTemplateDecl *>(this)->getPreviousDecl());
    [all...]
Decl.h 435 using redeclarable_base::getPreviousDecl;
834 return getPreviousDecl();
846 using redeclarable_base::getPreviousDecl;
    [all...]
DeclBase.h 726 /// \brief Implementation of getPreviousDecl(), to be overridden by any
792 Decl *getPreviousDecl() { return getPreviousDeclImpl(); }
796 const Decl *getPreviousDecl() const {
802 return getPreviousDecl() == nullptr;
875 Decl *Prev = getPreviousDecl();
908 Decl *Prev = getPreviousDecl();
    [all...]
DeclCXX.h 272 *this = Canon->getPreviousDecl()->DefinitionData.update();
658 CXXRecordDecl *getPreviousDecl() {
660 static_cast<RecordDecl *>(this)->getPreviousDecl());
662 const CXXRecordDecl *getPreviousDecl() const {
663 return const_cast<CXXRecordDecl*>(this)->getPreviousDecl();
    [all...]
DeclObjC.h 764 return getPreviousDecl();
    [all...]
  /external/clang/tools/libclang/
IndexingContext.h 151 /*isRedeclaration=*/D->getPreviousDecl() != nullptr,
165 /*isRedeclaration=*/D->getPreviousDecl(),
IndexingContext.cpp 434 bool isRedeclaration = D->hasDefinition() || D->getPreviousDecl();
489 bool isRedeclaration = D->hasDefinition() || D->getPreviousDecl();
    [all...]
  /external/clang/lib/Sema/
SemaTemplateInstantiateDecl.cpp 274 DeclT *Result = D->getPreviousDecl();
    [all...]
SemaAccess.cpp     [all...]
SemaTemplate.cpp     [all...]
SemaTemplateInstantiate.cpp     [all...]
SemaDecl.cpp     [all...]
SemaLookup.cpp     [all...]
SemaDeclCXX.cpp 522 Older = Older->getPreviousDecl();
    [all...]
  /external/clang/lib/AST/
Decl.cpp 595 const VarDecl *PrevVar = Var->getPreviousDecl();
605 for (const VarDecl *PrevVar = Var->getPreviousDecl(); PrevVar;
606 PrevVar = PrevVar->getPreviousDecl()) {
    [all...]
DeclTemplate.cpp 138 for (const RedeclarableTemplateDecl *Prev = getPreviousDecl(); Prev;
139 Prev = Prev->getPreviousDecl()) {
    [all...]
DeclCXX.cpp 582 if (Primary->getPreviousDecl())
583 Conversions.replace(cast<NamedDecl>(Primary->getPreviousDecl()),
    [all...]
DeclBase.cpp 982 N = N->getPreviousDecl())
    [all...]
ASTContext.cpp     [all...]
  /external/clang/lib/Serialization/
ASTWriterDecl.cpp     [all...]
ASTReader.cpp     [all...]
ASTReaderDecl.cpp     [all...]
ASTWriter.cpp     [all...]
  /external/clang/lib/Parse/
ParseCXXInlineMethods.cpp 381 FunctionDecl *Old = cast<FunctionDecl>(LM.Method)->getPreviousDecl();
    [all...]

Completed in 187 milliseconds

1 2