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

1 2

  /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();
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...]
Decl.h 378 using redeclarable_base::getPreviousDecl;
779 return getPreviousDecl();
791 using redeclarable_base::getPreviousDecl;
    [all...]
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...]
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...]
DeclObjC.h 763 return getPreviousDecl();
    [all...]
  /external/clang/lib/Sema/
SemaTemplateInstantiateDecl.cpp 296 if (TypedefNameDecl *Prev = D->getPreviousDecl()) {
343 if (Pattern->getPreviousDecl()) {
662 if (D->getPreviousDecl()) {
664 D->getPreviousDecl(),
826 if (!isFriend && Pattern->getPreviousDecl()) {
    [all...]
SemaAccess.cpp     [all...]
SemaTemplate.cpp     [all...]
SemaTemplateInstantiate.cpp     [all...]
SemaDecl.cpp     [all...]
SemaLookup.cpp     [all...]
SemaDeclCXX.cpp 497 for (FunctionDecl *Older = Old->getPreviousDecl();
498 Older; Older = Older->getPreviousDecl()) {
    [all...]
  /external/clang/tools/libclang/
IndexingContext.h 148 /*isRedeclaration=*/D->getPreviousDecl() != nullptr,
162 /*isRedeclaration=*/D->getPreviousDecl(),
IndexingContext.cpp 434 bool isRedeclaration = D->hasDefinition() || D->getPreviousDecl();
489 bool isRedeclaration = D->hasDefinition() || D->getPreviousDecl();
    [all...]
  /external/clang/lib/AST/
Decl.cpp 589 const VarDecl *PrevVar = Var->getPreviousDecl();
599 for (const VarDecl *PrevVar = Var->getPreviousDecl(); PrevVar;
600 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 956 N = N->getPreviousDecl())
    [all...]
ASTContext.cpp     [all...]
  /external/clang/lib/Serialization/
ASTWriterDecl.cpp 818 assert(D->getPreviousDecl() == nullptr && "PARM_VAR_DECL can't be redecl");
    [all...]
ASTReaderDecl.cpp     [all...]
ASTWriter.cpp     [all...]
ASTReader.cpp     [all...]
  /external/clang/lib/CodeGen/
CodeGenModule.cpp     [all...]

Completed in 278 milliseconds

1 2