Home | History | Annotate | Download | only in TableGen

Lines Matching refs:Parents

71   const std::vector<Record*> &Parents = DiagGroupParents.getParents(Group);
72 for (unsigned i = 0, e = Parents.size(); i != e; ++i) {
73 CatName = getCategoryFromDiagGroup(Parents[i], DiagGroupParents);
346 const std::vector<Record*> &Parents = DiagGroupParents.getParents(Group);
347 for (unsigned i = 0, e = Parents.size(); i != e; ++i)
348 if (isSubGroupOfGroup(Parents[i], GName))
389 const std::vector<Record*> &Parents = DiagGroupParents.getParents(Group);
390 for (unsigned i = 0, e = Parents.size(); i != e; ++i)
391 markGroup(Parents[i]);
448 const std::vector<Record*> &Parents = DiagGroupParents.getParents(Group);
449 for (unsigned j = 0, ej = Parents.size(); j != ej; ++j) {
450 if (groupInPedantic(Parents[j]))
453 // If all the parents are in -Wpedantic, this means that this diagnostic
456 // parents, obviously it should go into -Wpedantic.
457 if (Parents.size() > 0 && ParentsInPedantic == Parents.size())
826 // Compute a mapping from a DiagGroup to all of its parents.