Home | History | Annotate | Download | only in Serialization

Lines Matching refs:Modules

55 static const char * const IndexFileName = "modules.idx";
238 // If there are any modules that have gone out-of-date, prune out any modules
270 // Second, walk the back links from out-of-date modules to those modules
271 // that depend on them, making those modules out-of-date as well.
287 // Allocate the vector containing information about all of the modules.
288 Modules.resize(LargestID + 1);
295 Modules[LM->first].File = LM->second.File;
305 Modules[LM->first].Dependencies.push_back(Known->second.File);
346 for (unsigned I = 0, N = Modules.size(); I != N; ++I) {
347 if (Modules[I].File)
348 ModuleFiles.push_back(Modules[I].File);
357 for (unsigned I = 0, N = Modules.size(); I != N; ++I) {
358 if (Modules[I].File)
359 ModulesByFile[Modules[I].File] = I;
370 Dependencies = Modules[Known->second].Dependencies;
392 if (ID >= Modules.size() || !Modules[ID].File)
395 Hits.insert(Modules[ID].File);
422 /// \brief The set of modules on which this module depends. Each entry is