Home | History | Annotate | Download | only in Serialization

Lines Matching refs:Chain

82     New->Index = Chain.size();
86 Chain.push_back(New);
160 for (unsigned i = 0, n = Chain.size(); i != n; ++i) {
161 Chain[i]->ImportedBy.remove_if([&](ModuleFile *MF) {
186 // Remove the modules from the chain.
187 Chain.erase(first, last);
226 for (unsigned I = 0, N = Chain.size(); I != N; ++I) {
227 if (!GlobalIndex->loadedModuleFile(Chain[I])) {
228 ModulesInCommonWithGlobalIndex.push_back(Chain[I]);
244 for (unsigned i = 0, e = Chain.size(); i != e; ++i)
245 delete Chain[e - i - 1];
254 if (VisitOrder.size() != Chain.size()) {
389 for (unsigned I = 0, N = Chain.size(); I != N; ++I) {
390 if (Visited[Chain[I]->Index])
392 Visited[Chain[I]->Index] = true;
394 if (::visitDepthFirst(*Chain[I], Visitor, UserData, Visited))