Lines Matching full:rootgroup
86 int showGroup(StringRef RootGroup) {
89 if (RootGroup.size() > UINT16_MAX) {
95 std::lower_bound(AllGroups.begin(), AllGroups.end(), RootGroup);
97 if (Found == AllGroups.end() || Found->getName() != RootGroup) {
159 StringRef RootGroup;
166 RootGroup = argv[0];
167 if (RootGroup.startswith("-W"))
168 RootGroup = RootGroup.substr(2);
169 if (RootGroup == "everything")
181 return ShowAll ? TP.showAll() : TP.showGroup(RootGroup);