Home | History | Annotate | Download | only in Support

Lines Matching refs:Help

79 // This collects additional help to be printed.
82 extrahelp::extrahelp(const char *Help)
83 : morehelp(Help) {
84 MoreHelp->push_back(Help);
707 << argv[i] << "'. Try: '" << argv[0] << " -help'\n";
737 << " positional arguments: See: " << argv[0] << " -help\n";
745 << " positional arguments: See: " << argv[0] << " -help\n";
1192 // -help and -help-hidden option implementation
1285 // Print any extra help the user has declared.
1291 // Halt the program since help information was printed
1297 // Define the two HelpPrinter instances that are used to print out help, or
1298 // help-hidden...
1304 HOp("help", cl::desc("Display available options (-help-hidden for more)"),
1308 HHOp("help-hidden", cl::desc("Display all available options"),
1407 // Utility function for printing the help message.
1409 // This looks weird, but it actually prints the help message. The
1410 // NormalPrinter variable is a HelpPrinter and the help gets printed when
1412 // help printer is to be assigned true/false depending on whether the
1413 // -help option was given or not. Since we're circumventing that we have
1414 // to make it look like -help was given, so we assign true.