Home
last modified time | relevance | path

Searched refs:RootGroup (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/clang/tools/diagtool/
H A DTreeView.cpp87 int showGroup(StringRef RootGroup) { in showGroup() argument
90 if (RootGroup.size() > UINT16_MAX) { in showGroup()
95 const GroupRecord *Found = llvm::lower_bound(AllGroups, RootGroup); in showGroup()
96 if (Found == AllGroups.end() || Found->getName() != RootGroup) { in showGroup()
152 StringRef RootGroup; in run() local
159 RootGroup = argv[0]; in run()
160 if (RootGroup.startswith("-W")) in run()
161 RootGroup = RootGroup.substr(2); in run()
162 if (RootGroup == "everything") in run()
176 return ShowAll ? TP.showAll() : TP.showGroup(RootGroup); in run()