/external/llvm-project/clang/lib/Sema/ |
D | IdentifierResolver.cpp | 279 Decl *MostRecent = Existing->getMostRecentDecl(); in compareDeclarations() local 280 if (Existing == MostRecent) in compareDeclarations() 283 if (New == MostRecent) in compareDeclarations()
|
D | SemaDecl.cpp | 4092 VarDecl *MostRecent = Old->getMostRecentDecl(); in MergeVarDecl() local 4093 if (MostRecent != Old) { in MergeVarDecl() 4094 MergeVarDeclTypes(New, MostRecent, in MergeVarDecl() 4095 mergeTypeWithPrevious(*this, New, MostRecent, Previous)); in MergeVarDecl()
|
/external/clang/lib/Sema/ |
D | IdentifierResolver.cpp | 275 Decl *MostRecent = Existing->getMostRecentDecl(); in compareDeclarations() local 276 if (Existing == MostRecent) in compareDeclarations() 279 if (New == MostRecent) in compareDeclarations()
|
D | SemaDecl.cpp | 3546 VarDecl *MostRecent = Old->getMostRecentDecl(); in MergeVarDecl() local 3547 if (MostRecent != Old) { in MergeVarDecl() 3548 MergeVarDeclTypes(New, MostRecent, in MergeVarDecl() 3549 mergeTypeWithPrevious(*this, New, MostRecent, Previous)); in MergeVarDecl()
|
/external/clang/lib/Serialization/ |
D | ASTReaderDecl.cpp | 3566 Decl *MostRecent = FirstLocal; in loadPendingDeclChain() local 3569 ASTDeclReader::attachPreviousDecl(*this, D, MostRecent, CanonDecl); in loadPendingDeclChain() 3570 MostRecent = D; in loadPendingDeclChain() 3572 ASTDeclReader::attachLatestDecl(CanonDecl, MostRecent); in loadPendingDeclChain() 3701 auto *MostRecent = D->getMostRecentDecl(); in forAllLaterRedecls() local 3703 for (auto *Redecl = MostRecent; Redecl && !Found; in forAllLaterRedecls() 3709 for (auto *Redecl = MostRecent; Redecl != D; in forAllLaterRedecls()
|
D | ASTWriterDecl.cpp | 1584 T *MostRecent = First->getMostRecentDecl(); in VisitRedeclarable() local 1586 if (MostRecent != First) { in VisitRedeclarable() 1633 (void)Writer.GetDeclRef(MostRecent); in VisitRedeclarable()
|
/external/llvm-project/clang/lib/AST/ |
D | Decl.cpp | 1142 const NamedDecl *MostRecent = ND->getMostRecentDecl(); in getExplicitVisibilityAux() local 1143 if (MostRecent != ND) in getExplicitVisibilityAux() 1144 return getExplicitVisibilityAux(MostRecent, kind, true); in getExplicitVisibilityAux() 4789 auto *MostRecent = getMostRecentDecl(); in isWeak() local 4790 return MostRecent->hasAttr<WeakAttr>() || in isWeak() 4791 MostRecent->hasAttr<WeakRefAttr>() || isWeakImported(); in isWeak()
|
/external/llvm-project/clang/lib/Serialization/ |
D | ASTReaderDecl.cpp | 4271 Decl *MostRecent = FirstLocal; in loadPendingDeclChain() local 4274 ASTDeclReader::attachPreviousDecl(*this, D, MostRecent, CanonDecl); in loadPendingDeclChain() 4275 MostRecent = D; in loadPendingDeclChain() 4277 ASTDeclReader::attachLatestDecl(CanonDecl, MostRecent); in loadPendingDeclChain() 4406 auto *MostRecent = D->getMostRecentDecl(); in forAllLaterRedecls() local 4408 for (auto *Redecl = MostRecent; Redecl && !Found; in forAllLaterRedecls() 4414 for (auto *Redecl = MostRecent; Redecl != D; in forAllLaterRedecls()
|
D | ASTWriterDecl.cpp | 1783 T *MostRecent = First->getMostRecentDecl(); in VisitRedeclarable() local 1785 if (MostRecent != First) { in VisitRedeclarable() 1832 (void)Writer.GetDeclRef(MostRecent); in VisitRedeclarable()
|
/external/clang/include/clang/AST/ |
D | Decl.h | 3830 decl_type *MostRecent = First->getNextRedeclaration(); in setPreviousDecl() local 3831 RedeclLink = PreviousDeclLink(cast<decl_type>(MostRecent)); in setPreviousDecl() 3836 MostRecent->getIdentifierNamespace() & in setPreviousDecl()
|
/external/llvm-project/clang/include/clang/AST/ |
D | Decl.h | 4551 decl_type *MostRecent = First->getNextRedeclaration(); in setPreviousDecl() local 4552 RedeclLink = PreviousDeclLink(cast<decl_type>(MostRecent)); in setPreviousDecl() 4557 MostRecent->getIdentifierNamespace() & in setPreviousDecl()
|
/external/clang/lib/AST/ |
D | Decl.cpp | 1069 const NamedDecl *MostRecent = ND->getMostRecentDecl(); in getExplicitVisibilityAux() local 1070 if (MostRecent != ND) in getExplicitVisibilityAux() 1071 return getExplicitVisibilityAux(MostRecent, kind, true); in getExplicitVisibilityAux()
|