Home
last modified time | relevance | path

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

/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/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/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()