Searched refs:extrahelp (Results 1 – 16 of 16) sorted by relevance
47 static cl::extrahelp CommonHelp(CommonOptionsParser::HelpMessage);50 static cl::extrahelp MoreHelp("\nMore help text...");
42 static cl::extrahelp CommonHelp(CommonOptionsParser::HelpMessage);43 static cl::extrahelp MoreHelp(
87 static cl::extrahelp CommonHelp(CommonOptionsParser::HelpMessage);
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");
49 static cl::extrahelp CommonHelp(CommonOptionsParser::HelpMessage);
118 static cl::extrahelp CommonHelp(CommonOptionsParser::HelpMessage);
35 static cl::extrahelp CommonHelp(CommonOptionsParser::HelpMessage);36 static cl::extrahelp ClangTidyHelp(R"(
52 static llvm::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(
1909 struct extrahelp {1912 explicit extrahelp(StringRef help);
268 static cl::extrahelp
442 extrahelp::extrahelp(StringRef Help) : morehelp(Help) { in extrahelp() function in extrahelp