Home
last modified time | relevance | path

Searched refs:ImportedDecls (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DASTImporter.h227 llvm::DenseMap<Decl *, Decl *> ImportedDecls; variable
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTImporter.cpp9369 ImportedDecls[FromContext.getTranslationUnitDecl()] = in ASTImporter()
9779 return ImportedDecls.lookup(FromD); in GetAlreadyImportedOrNull()
9826 auto Pos = ImportedDecls.find(FromD); in Import()
9827 if (Pos != ImportedDecls.end()) { in Import()
9831 ImportedDecls.erase(Pos); in Import()
9866 if (Pos != ImportedDecls.end()) in Import()
9888 auto Ii = ImportedDecls.find(FromDi); in Import()
9889 if (Ii != ImportedDecls.end()) in Import()
9921 assert(ImportedDecls.count(FromD) != 0 && "Missing call to MapImported?"); in Import()
10821 auto [Pos, Inserted] = ImportedDecls.try_emplace(From, To); in MapImported()