Searched refs:MostRecent (Results 1 – 5 of 5) sorted by relevance
| /freebsd/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReaderDecl.cpp | 4527 Decl *MostRecent = FirstLocal; in loadPendingDeclChain() local 4531 ASTDeclReader::attachPreviousDecl(*this, D, MostRecent, CanonDecl); in loadPendingDeclChain() 4532 MostRecent = D; in loadPendingDeclChain() 4534 ASTDeclReader::attachLatestDecl(CanonDecl, MostRecent); in loadPendingDeclChain() 4660 auto *MostRecent = D->getMostRecentDecl(); in forAllLaterRedecls() local 4662 for (auto *Redecl = MostRecent; Redecl && !Found; in forAllLaterRedecls() 4668 for (auto *Redecl = MostRecent; Redecl != D; in forAllLaterRedecls()
|
| H A D | ASTWriterDecl.cpp | 2230 T *MostRecent = First->getMostRecentDecl(); in VisitRedeclarable() local 2232 if (MostRecent != First) { in VisitRedeclarable() 2279 (void)Writer.GetDeclRef(MostRecent); in VisitRedeclarable()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | Decl.cpp | 1266 const NamedDecl *MostRecent = ND->getMostRecentDecl(); in getExplicitVisibilityAux() local 1267 if (MostRecent != ND) in getExplicitVisibilityAux() 1268 return getExplicitVisibilityAux(MostRecent, kind, true); in getExplicitVisibilityAux() 5465 auto *MostRecent = getMostRecentDecl(); in isWeak() local 5466 return MostRecent->hasAttr<WeakAttr>() || in isWeak() 5467 MostRecent->hasAttr<WeakRefAttr>() || isWeakImported(); in isWeak()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | Decl.h | 5250 decl_type *MostRecent = First->getNextRedeclaration(); in setPreviousDecl() local 5251 RedeclLink = PreviousDeclLink(cast<decl_type>(MostRecent)); in setPreviousDecl() 5256 MostRecent->getIdentifierNamespace() & in setPreviousDecl()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaDecl.cpp | 4637 VarDecl *MostRecent = Old->getMostRecentDecl(); in MergeVarDecl() local 4638 if (MostRecent != Old) { in MergeVarDecl() 4639 MergeVarDeclTypes(New, MostRecent, in MergeVarDecl() 4640 mergeTypeWithPrevious(*this, New, MostRecent, Previous)); in MergeVarDecl()
|