Searched refs:extrahelp (Results 1 – 12 of 12) sorted by relevance
42 static cl::extrahelp CommonHelp(CommonOptionsParser::HelpMessage);43 static cl::extrahelp MoreHelp(
117 // Declares llvm::cl::extrahelp.130 static cl::extrahelp CommonHelp(CommonOptionsParser::HelpMessage);133 static cl::extrahelp MoreHelp("\nMore help text...\n");
128 // Declares llvm::cl::extrahelp.141 static cl::extrahelp CommonHelp(CommonOptionsParser::HelpMessage);144 static cl::extrahelp MoreHelp("\nMore help text...\n");
95 cl::extrahelp HelpResponse( in main()
119 static cl::extrahelp CommonHelp(CommonOptionsParser::HelpMessage);
58 static llvm::cl::extrahelp extraHelp(
55 static cl::extrahelp MoreHelp(
1477 .. _cl::extrahelp:1479 The ``cl::extrahelp`` class1482 The ``cl::extrahelp`` class is a nontemplated class that allows extra help text1488 struct extrahelp;1491 To use the extrahelp, simply construct one with a ``const char*`` parameter to1493 bottom of the help message, verbatim. Note that multiple ``cl::extrahelp``1495 additional help information, put all that help into a single ``cl::extrahelp``1502 cl::extrahelp("\nADDITIONAL HELP:\n\n This is the extra help\n");
30 static cl::extrahelp FileCheckOptsEnv(
1974 struct extrahelp {1977 explicit extrahelp(StringRef help);
276 static cl::extrahelp
440 extrahelp::extrahelp(StringRef Help) : morehelp(Help) { in extrahelp() function in extrahelp