Home
last modified time | relevance | path

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

/external/llvm-project/clang/lib/Sema/
DIdentifierResolver.cpp279 Decl *MostRecent = Existing->getMostRecentDecl(); in compareDeclarations() local
280 if (Existing == MostRecent) in compareDeclarations()
283 if (New == MostRecent) in compareDeclarations()
DSemaDecl.cpp4092 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/
DIdentifierResolver.cpp275 Decl *MostRecent = Existing->getMostRecentDecl(); in compareDeclarations() local
276 if (Existing == MostRecent) in compareDeclarations()
279 if (New == MostRecent) in compareDeclarations()
DSemaDecl.cpp3546 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/
DASTReaderDecl.cpp3566 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()
DASTWriterDecl.cpp1584 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/
DDecl.cpp1142 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/
DASTReaderDecl.cpp4271 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()
DASTWriterDecl.cpp1783 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/
DDecl.h3830 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/
DDecl.h4551 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/
DDecl.cpp1069 const NamedDecl *MostRecent = ND->getMostRecentDecl(); in getExplicitVisibilityAux() local
1070 if (MostRecent != ND) in getExplicitVisibilityAux()
1071 return getExplicitVisibilityAux(MostRecent, kind, true); in getExplicitVisibilityAux()