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

/external/clang/lib/Sema/
H A DIdentifierResolver.cpp275 Decl *MostRecent = Existing->getMostRecentDecl();
276 if (Existing == MostRecent)
279 if (New == MostRecent)
H A DSemaDecl.cpp3546 VarDecl *MostRecent = Old->getMostRecentDecl(); local
3547 if (MostRecent != Old) {
3548 MergeVarDeclTypes(New, MostRecent,
3549 mergeTypeWithPrevious(*this, New, MostRecent, Previous));
/external/clang/lib/Serialization/
H A DASTReaderDecl.cpp3566 Decl *MostRecent = FirstLocal; local
3569 ASTDeclReader::attachPreviousDecl(*this, D, MostRecent, CanonDecl);
3570 MostRecent = D;
3572 ASTDeclReader::attachLatestDecl(CanonDecl, MostRecent);
3699 // MostRecent may or may not be nullptr if D has not been merged. If
3701 auto *MostRecent = D->getMostRecentDecl(); local
3703 for (auto *Redecl = MostRecent; Redecl && !Found;
3709 for (auto *Redecl = MostRecent; Redecl != D;
H A DASTWriterDecl.cpp1584 T *MostRecent = First->getMostRecentDecl(); local
1586 if (MostRecent != First) {
1633 (void)Writer.GetDeclRef(MostRecent);
/external/clang/include/clang/AST/
H A DDecl.h3830 decl_type *MostRecent = First->getNextRedeclaration();
3831 RedeclLink = PreviousDeclLink(cast<decl_type>(MostRecent));
3836 MostRecent->getIdentifierNamespace() &
/external/clang/lib/AST/
H A DDecl.cpp1069 const NamedDecl *MostRecent = ND->getMostRecentDecl(); local
1070 if (MostRecent != ND)
1071 return getExplicitVisibilityAux(MostRecent, kind, true);

Completed in 1503 milliseconds