Home | History | Annotate | Download | only in Support

Lines Matching defs:Category

152 // Option Category class
170 // The general Option Category (used as default category).
211 OptionCategory *Category; // The Category this option belongs to
245 void setCategory(OptionCategory &C) { Category = &C; }
253 Category(&GeneralCategory), FullyInitialized(false) {}
343 // cat - Specifiy the Option category for the command line argument to belong
346 OptionCategory &Category;
347 cat(OptionCategory &c) : Category(c) {}
349 template <class Opt> void apply(Opt &O) const { O.setCategory(Category); }
1733 /// \brief Mark all options not part of this category as cl::ReallyHidden.
1735 /// \param Category the category of options to keep displaying
1739 /// option category to display in the -help output.
1740 void HideUnrelatedOptions(cl::OptionCategory &Category);
1748 /// option category to display in the -help output.