Searched refs:MostRecent (Results 1 – 6 of 6) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | IdentifierResolver.cpp | 279 Decl *MostRecent = Existing->getMostRecentDecl(); in compareDeclarations() local 280 if (Existing == MostRecent) in compareDeclarations() 283 if (New == MostRecent) in compareDeclarations()
|
| H A D | SemaDecl.cpp | 4177 VarDecl *MostRecent = Old->getMostRecentDecl(); in MergeVarDecl() local 4178 if (MostRecent != Old) { in MergeVarDecl() 4179 MergeVarDeclTypes(New, MostRecent, in MergeVarDecl() 4180 mergeTypeWithPrevious(*this, New, MostRecent, Previous)); in MergeVarDecl()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/ |
| H A D | Decl.cpp | 1164 const NamedDecl *MostRecent = ND->getMostRecentDecl(); in getExplicitVisibilityAux() local 1165 if (MostRecent != ND) in getExplicitVisibilityAux() 1166 return getExplicitVisibilityAux(MostRecent, kind, true); in getExplicitVisibilityAux() 4821 auto *MostRecent = getMostRecentDecl(); in isWeak() local 4822 return MostRecent->hasAttr<WeakAttr>() || in isWeak() 4823 MostRecent->hasAttr<WeakRefAttr>() || isWeakImported(); in isWeak()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReaderDecl.cpp | 4306 Decl *MostRecent = FirstLocal; in loadPendingDeclChain() local 4309 ASTDeclReader::attachPreviousDecl(*this, D, MostRecent, CanonDecl); in loadPendingDeclChain() 4310 MostRecent = D; in loadPendingDeclChain() 4312 ASTDeclReader::attachLatestDecl(CanonDecl, MostRecent); in loadPendingDeclChain() 4441 auto *MostRecent = D->getMostRecentDecl(); in forAllLaterRedecls() local 4443 for (auto *Redecl = MostRecent; Redecl && !Found; in forAllLaterRedecls() 4449 for (auto *Redecl = MostRecent; Redecl != D; in forAllLaterRedecls()
|
| H A D | ASTWriterDecl.cpp | 1801 T *MostRecent = First->getMostRecentDecl(); in VisitRedeclarable() local 1803 if (MostRecent != First) { in VisitRedeclarable() 1850 (void)Writer.GetDeclRef(MostRecent); in VisitRedeclarable()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | Decl.h | 4597 decl_type *MostRecent = First->getNextRedeclaration(); in setPreviousDecl() local 4598 RedeclLink = PreviousDeclLink(cast<decl_type>(MostRecent)); in setPreviousDecl() 4603 MostRecent->getIdentifierNamespace() & in setPreviousDecl()
|