Home | History | Annotate | Download | only in Serialization

Lines Matching full:chain

56     New->Index = Chain.size();
60 Chain.push_back(New);
125 for (unsigned i = 0, n = Chain.size(); i != n; ++i) {
126 Chain[i]->ImportedBy.remove_if(checkInSet);
135 // Remove the modules from the chain.
136 Chain.erase(first, last);
196 for (unsigned i = 0, e = Chain.size(); i != e; ++i)
197 delete Chain[e - i - 1];
206 if (VisitOrder.size() != Chain.size()) {
347 for (unsigned I = 0, N = Chain.size(); I != N; ++I) {
348 if (Visited[Chain[I]->Index])
350 Visited[Chain[I]->Index] = true;
352 if (::visitDepthFirst(*Chain[I], Visitor, UserData, Visited))