Lines Matching defs:cl
37 using namespace cl;
42 namespace llvm { namespace cl {
58 } } // end namespace llvm::cl
93 void cl::MarkOptionsChanged() {
140 if (O->getFormattingFlag() == cl::Positional)
142 else if (O->getMiscFlags() & cl::Sink) // Remember sink options
144 else if (O->getNumOccurrencesFlag() == cl::ConsumeAfter) {
146 O->error("Cannot specify more than one option with cl::ConsumeAfter!");
213 bool PermitValue = O->getValueExpectedFlag() != cl::ValueDisallowed;
234 /// does special handling of cl::CommaSeparated options.
332 return O->getFormattingFlag() == cl::Grouping;
335 return isGrouping(O) || O->getFormattingFlag() == cl::Prefix;
382 if (PGOpt->getFormattingFlag() == cl::Prefix) {
400 assert(PGOpt->getValueExpectedFlag() != cl::ValueRequired &&
401 "Option can not be cl::Grouping AND cl::ValueRequired!");
417 return O->getNumOccurrencesFlag() == cl::Required ||
418 O->getNumOccurrencesFlag() == cl::OneOrMore;
422 return O->getNumOccurrencesFlag() == cl::ZeroOrMore ||
423 O->getNumOccurrencesFlag() == cl::OneOrMore;
466 void cl::ParseEnvironmentOptions(const char *progName, const char *envVar,
531 void cl::ParseCommandLineOptions(int argc, const char * const *argv,
566 if (PositionalOpts[0]->getNumOccurrencesFlag() == cl::ConsumeAfter) {
568 "Cannot specify cl::ConsumeAfter without a positional argument!");
586 "cl::ConsumeAfter option is active!");
674 if (!Handler || Handler->getFormattingFlag() != cl::Positional) {
721 if (Handler->getFormattingFlag() == cl::Positional)
758 bool Done = PositionalOpts[i]->getNumOccurrencesFlag() == cl::Required;
761 case cl::Optional:
764 case cl::ZeroOrMore: // Zero or more will take all they can get...
765 case cl::OneOrMore: // One or more will take all they can get...
801 // cl::ConsumeAfter command line option...
896 // cl::alias class implementation
1248 Option *CAOpt = 0; // The cl::ConsumeAfter option, if it exists...
1291 static cl::opt<HelpPrinter, true, parser<bool> >
1292 HOp("help", cl::desc("Display available options (-help-hidden for more)"),
1293 cl::location(NormalPrinter), cl::ValueDisallowed);
1295 static cl::opt<HelpPrinter, true, parser<bool> >
1296 HHOp("help-hidden", cl::desc("Display all available options"),
1297 cl::location(HiddenPrinter), cl::Hidden, cl::ValueDisallowed);
1299 static cl::opt<bool>
1301 cl::desc("Print non-default options after command line parsing"),
1302 cl::Hidden, cl::init(false));
1304 static cl::opt<bool>
1306 cl::desc("Print all option values after command line parsing"),
1307 cl::Hidden, cl::init(false));
1310 void cl::PrintOptionValues() {
1391 static cl::opt<VersionPrinter, true, parser<bool> >
1392 VersOp("version", cl::desc("Display the version of this program"),
1393 cl::location(VersionPrinterInstance), cl::ValueDisallowed);
1396 void cl::PrintHelpMessage() {
1407 void cl::PrintVersionMessage() {
1411 void cl::SetVersionPrinter(void (*func)()) {
1415 void cl::AddExtraVersionPrinter(void (*func)()) {