Searched refs:MostRecent (Results 1 – 6 of 6) sorted by relevance
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | IdentifierResolver.cpp | 285 Decl *MostRecent = Existing->getMostRecentDecl(); in compareDeclarations() local 286 if (Existing == MostRecent) in compareDeclarations() 289 if (New == MostRecent) in compareDeclarations()
|
| H A D | SemaDecl.cpp | 4593 VarDecl *MostRecent = Old->getMostRecentDecl(); in MergeVarDecl() local 4594 if (MostRecent != Old) { in MergeVarDecl() 4595 MergeVarDeclTypes(New, MostRecent, in MergeVarDecl() 4596 mergeTypeWithPrevious(*this, New, MostRecent, Previous)); in MergeVarDecl()
|
| /openbsd-src/gnu/llvm/clang/lib/Serialization/ |
| H A D | ASTReaderDecl.cpp | 4154 Decl *MostRecent = FirstLocal; in loadPendingDeclChain() local 4157 ASTDeclReader::attachPreviousDecl(*this, D, MostRecent, CanonDecl); in loadPendingDeclChain() 4158 MostRecent = D; in loadPendingDeclChain() 4160 ASTDeclReader::attachLatestDecl(CanonDecl, MostRecent); in loadPendingDeclChain() 4289 auto *MostRecent = D->getMostRecentDecl(); in forAllLaterRedecls() local 4291 for (auto *Redecl = MostRecent; Redecl && !Found; in forAllLaterRedecls() 4297 for (auto *Redecl = MostRecent; Redecl != D; in forAllLaterRedecls()
|
| H A D | ASTWriterDecl.cpp | 1839 T *MostRecent = First->getMostRecentDecl(); in VisitRedeclarable() local 1841 if (MostRecent != First) { in VisitRedeclarable() 1888 (void)Writer.GetDeclRef(MostRecent); in VisitRedeclarable()
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | Decl.cpp | 1216 const NamedDecl *MostRecent = ND->getMostRecentDecl(); in getExplicitVisibilityAux() local 1217 if (MostRecent != ND) in getExplicitVisibilityAux() 1218 return getExplicitVisibilityAux(MostRecent, kind, true); in getExplicitVisibilityAux() 5046 auto *MostRecent = getMostRecentDecl(); in isWeak() local 5047 return MostRecent->hasAttr<WeakAttr>() || in isWeak() 5048 MostRecent->hasAttr<WeakRefAttr>() || isWeakImported(); in isWeak()
|
| /openbsd-src/gnu/llvm/clang/include/clang/AST/ |
| H A D | Decl.h | 4844 decl_type *MostRecent = First->getNextRedeclaration(); in setPreviousDecl() local 4845 RedeclLink = PreviousDeclLink(cast<decl_type>(MostRecent)); in setPreviousDecl() 4850 MostRecent->getIdentifierNamespace() & in setPreviousDecl()
|