Lines Matching refs:ImportedDecls
8400 ImportedDecls[FromContext.getTranslationUnitDecl()] = in ASTImporter()
8809 auto Pos = ImportedDecls.find(FromD); in GetAlreadyImportedOrNull()
8810 if (Pos != ImportedDecls.end()) in GetAlreadyImportedOrNull()
8860 auto Pos = ImportedDecls.find(FromD); in Import()
8861 if (Pos != ImportedDecls.end()) { in Import()
8865 ImportedDecls.erase(Pos); in Import()
8900 if (Pos != ImportedDecls.end()) in Import()
8922 auto Ii = ImportedDecls.find(FromDi); in Import()
8923 if (Ii != ImportedDecls.end()) in Import()
8956 assert(ImportedDecls.count(FromD) != 0 && "Missing call to MapImported?"); in Import()
9865 llvm::DenseMap<Decl *, Decl *>::iterator Pos = ImportedDecls.find(From); in MapImported()
9866 assert((Pos == ImportedDecls.end() || Pos->second == To) && in MapImported()
9868 if (Pos != ImportedDecls.end()) in MapImported()
9870 ImportedDecls[From] = To; in MapImported()