Home
last modified time | relevance | path

Searched refs:MostRecent (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp4382 Decl *MostRecent = FirstLocal; in loadPendingDeclChain() local
4386 ASTDeclReader::attachPreviousDecl(*this, D, MostRecent, CanonDecl); in loadPendingDeclChain()
4387 MostRecent = D; in loadPendingDeclChain()
4389 ASTDeclReader::attachLatestDecl(CanonDecl, MostRecent); in loadPendingDeclChain()
4515 auto *MostRecent = D->getMostRecentDecl(); in forAllLaterRedecls() local
4517 for (auto *Redecl = MostRecent; Redecl && !Found; in forAllLaterRedecls()
4523 for (auto *Redecl = MostRecent; Redecl != D; in forAllLaterRedecls()
H A DASTWriterDecl.cpp2034 T *MostRecent = First->getMostRecentDecl(); in VisitRedeclarable() local
2036 if (MostRecent != First) { in VisitRedeclarable()
2083 (void)Writer.GetDeclRef(MostRecent); in VisitRedeclarable()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDecl.cpp1260 const NamedDecl *MostRecent = ND->getMostRecentDecl(); in getExplicitVisibilityAux() local
1261 if (MostRecent != ND) in getExplicitVisibilityAux()
1262 return getExplicitVisibilityAux(MostRecent, kind, true); in getExplicitVisibilityAux()
5358 auto *MostRecent = getMostRecentDecl(); in isWeak() local
5359 return MostRecent->hasAttr<WeakAttr>() || in isWeak()
5360 MostRecent->hasAttr<WeakRefAttr>() || isWeakImported(); in isWeak()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDecl.h4986 decl_type *MostRecent = First->getNextRedeclaration(); in setPreviousDecl() local
4987 RedeclLink = PreviousDeclLink(cast<decl_type>(MostRecent)); in setPreviousDecl()
4992 MostRecent->getIdentifierNamespace() & in setPreviousDecl()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDecl.cpp4543 VarDecl *MostRecent = Old->getMostRecentDecl(); in MergeVarDecl() local
4544 if (MostRecent != Old) { in MergeVarDecl()
4545 MergeVarDeclTypes(New, MostRecent, in MergeVarDecl()
4546 mergeTypeWithPrevious(*this, New, MostRecent, Previous)); in MergeVarDecl()