Home | History | Annotate | Download | only in Support

Lines Matching refs:Help

82 // This collects additional help to be printed.
85 extrahelp::extrahelp(const char *Help)
86 : morehelp(Help) {
87 MoreHelp->push_back(Help);
704 << argv[i] << "'. Try: '" << argv[0] << " -help'\n";
734 << " positional arguments: See: " << argv[0] << " -help\n";
742 << " positional arguments: See: " << argv[0] << " -help\n";
1188 // -help and -help-hidden option implementation
1281 // Print any extra help the user has declared.
1287 // Halt the program since help information was printed
1293 // Define the two HelpPrinter instances that are used to print out help, or
1294 // help-hidden...
1300 HOp("help", cl::desc("Display available options (-help-hidden for more)"),
1304 HHOp("help-hidden", cl::desc("Display all available options"),
1403 // Utility function for printing the help message.
1405 // This looks weird, but it actually prints the help message. The
1406 // NormalPrinter variable is a HelpPrinter and the help gets printed when
1408 // help printer is to be assigned true/false depending on whether the
1409 // -help option was given or not. Since we're circumventing that we have
1410 // to make it look like -help was given, so we assign true.