Home | History | Annotate | Download | only in TableGen

Lines Matching refs:Parents

70   const std::vector<Record*> &Parents = DiagGroupParents.getParents(Group);
71 for (unsigned i = 0, e = Parents.size(); i != e; ++i) {
72 CatName = getCategoryFromDiagGroup(Parents[i], DiagGroupParents);
344 const std::vector<Record*> &Parents = DiagGroupParents.getParents(Group);
345 for (unsigned i = 0, e = Parents.size(); i != e; ++i)
346 if (isSubGroupOfGroup(Parents[i], GName))
386 const std::vector<Record*> &Parents = DiagGroupParents.getParents(Group);
387 for (unsigned i = 0, e = Parents.size(); i != e; ++i)
388 markGroup(Parents[i]);
445 const std::vector<Record*> &Parents = DiagGroupParents.getParents(Group);
446 for (unsigned j = 0, ej = Parents.size(); j != ej; ++j) {
447 if (groupInPedantic(Parents[j]))
450 // If all the parents are in -Wpedantic, this means that this diagnostic
453 // parents, obviously it should go into -Wpedantic.
454 if (Parents.size() > 0 && ParentsInPedantic == Parents.size())
598 // Compute a mapping from a DiagGroup to all of its parents.