HomeSort by relevance Sort by last modified time
    Searched refs:getPreviousDecl (Results 1 - 25 of 25) 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();
DeclTemplate.h 507 return getPreviousDecl();
686 using redeclarable_base::getPreviousDecl;
792 FunctionTemplateDecl *getPreviousDecl() {
794 RedeclarableTemplateDecl::getPreviousDecl());
799 const FunctionTemplateDecl *getPreviousDecl() const {
801 RedeclarableTemplateDecl::getPreviousDecl());
    [all...]
Decl.h 417 return getPreviousDecl();
434 using redeclarable_base::getPreviousDecl;
831 return getPreviousDecl();
841 using redeclarable_base::getPreviousDecl;
    [all...]
DeclObjC.h 652 return getPreviousDecl();
    [all...]
DeclCXX.h 682 const CXXRecordDecl *getPreviousDecl() const {
683 return cast_or_null<CXXRecordDecl>(RecordDecl::getPreviousDecl());
685 CXXRecordDecl *getPreviousDecl() {
686 return cast_or_null<CXXRecordDecl>(RecordDecl::getPreviousDecl());
    [all...]
DeclBase.h 680 /// \brief Implementation of getPreviousDecl(), to be overridden by any
740 Decl *getPreviousDecl() { return getPreviousDeclImpl(); }
744 const Decl *getPreviousDecl() const {
    [all...]
  /external/clang/lib/AST/
Decl.cpp 225 for (const VarDecl *PrevVar = Var->getPreviousDecl();
227 PrevVar = PrevVar->getPreviousDecl())
235 const VarDecl *PrevVar = Var->getPreviousDecl();
236 for (; PrevVar; PrevVar = PrevVar->getPreviousDecl())
357 if (const VarDecl *PrevVar = Var->getPreviousDecl()) {
392 if (const FunctionDecl *PrevFunc = Function->getPreviousDecl()) {
821 if (const FunctionDecl *Prev = Function->getPreviousDecl()) {
    [all...]
DeclCXX.cpp 706 if (FunTmpl->getPreviousDecl())
707 data().Conversions.replace(FunTmpl->getPreviousDecl(),
712 if (Conversion->getPreviousDecl())
713 data().Conversions.replace(Conversion->getPreviousDecl(),
    [all...]
DeclTemplate.cpp 136 for (RedeclarableTemplateDecl *Prev = getPreviousDecl(); Prev;
137 Prev = Prev->getPreviousDecl()) {
    [all...]
DeclBase.cpp 875 N = N->getPreviousDecl())
    [all...]
DumpXML.cpp 411 if (T *Prev = D->getPreviousDecl())
ASTContext.cpp     [all...]
  /external/clang/tools/libclang/
IndexingContext.h 149 /*isRedeclaration=*/D->getPreviousDecl() != 0,
164 /*isRedeclaration=*/D->getPreviousDecl(),
IndexingContext.cpp 359 bool isRedeclaration = D->hasDefinition() || D->getPreviousDecl();
413 bool isRedeclaration = D->hasDefinition() || D->getPreviousDecl();
    [all...]
  /external/clang/lib/Sema/
SemaTemplateInstantiateDecl.cpp 183 if (TypedefNameDecl *Prev = D->getPreviousDecl()) {
230 if (Pattern->getPreviousDecl()) {
564 if (D->getPreviousDecl()) {
566 D->getPreviousDecl(),
730 if (!isFriend && Pattern->getPreviousDecl()) {
    [all...]
SemaAccess.cpp     [all...]
SemaTemplate.cpp     [all...]
SemaTemplateInstantiate.cpp     [all...]
SemaDecl.cpp     [all...]
SemaDeclCXX.cpp 451 for (FunctionDecl *Older = Old->getPreviousDecl();
452 Older; Older = Older->getPreviousDecl()) {
    [all...]
SemaLookup.cpp     [all...]
  /external/clang/lib/Serialization/
ASTWriterDecl.cpp 760 assert(D->getPreviousDecl() == 0 && "PARM_VAR_DECL can't be redecl");
    [all...]
ASTWriter.cpp     [all...]
ASTReaderDecl.cpp     [all...]
  /external/clang/lib/CodeGen/
CodeGenModule.cpp     [all...]

Completed in 1079 milliseconds