Lines Matching refs:ImportedDecls
7981 ImportedDecls[FromContext.getTranslationUnitDecl()] = in ASTImporter()
8164 auto Pos = ImportedDecls.find(FromD); in GetAlreadyImportedOrNull()
8165 if (Pos != ImportedDecls.end()) in GetAlreadyImportedOrNull()
8215 auto Pos = ImportedDecls.find(FromD); in Import()
8216 if (Pos != ImportedDecls.end()) { in Import()
8220 ImportedDecls.erase(Pos); in Import()
8251 if (Pos != ImportedDecls.end()) in Import()
8261 auto Ii = ImportedDecls.find(FromDi); in Import()
8262 if (Ii != ImportedDecls.end()) in Import()
8294 assert(ImportedDecls.count(FromD) != 0 && "Missing call to MapImported?"); in Import()
9192 llvm::DenseMap<Decl *, Decl *>::iterator Pos = ImportedDecls.find(From); in MapImported()
9193 assert((Pos == ImportedDecls.end() || Pos->second == To) && in MapImported()
9195 if (Pos != ImportedDecls.end()) in MapImported()
9197 ImportedDecls[From] = To; in MapImported()