Home
last modified time | relevance | path

Searched refs:extrahelp (Results 1 – 16 of 16) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/clang-include-fixer/find-all-symbols/tool/
H A DFindAllSymbolsMain.cpp47 static cl::extrahelp CommonHelp(CommonOptionsParser::HelpMessage);
50 static cl::extrahelp MoreHelp("\nMore help text...");
/llvm-project-15.0.7/clang/tools/clang-check/
H A DClangCheck.cpp42 static cl::extrahelp CommonHelp(CommonOptionsParser::HelpMessage);
43 static cl::extrahelp MoreHelp(
/llvm-project-15.0.7/clang-tools-extra/tool-template/
H A DToolTemplate.cpp87 static cl::extrahelp CommonHelp(CommonOptionsParser::HelpMessage);
/llvm-project-15.0.7/clang/docs/
H A DLibTooling.rst117 // Declares llvm::cl::extrahelp.
130 static cl::extrahelp CommonHelp(CommonOptionsParser::HelpMessage);
133 static cl::extrahelp MoreHelp("\nMore help text...\n");
H A DLibASTMatchersTutorial.rst128 // Declares llvm::cl::extrahelp.
141 static cl::extrahelp CommonHelp(CommonOptionsParser::HelpMessage);
144 static cl::extrahelp MoreHelp("\nMore help text...\n");
/llvm-project-15.0.7/clang-tools-extra/clang-query/tool/
H A DClangQuery.cpp49 static cl::extrahelp CommonHelp(CommonOptionsParser::HelpMessage);
/llvm-project-15.0.7/clang/tools/clang-extdef-mapping/
H A DClangExtDefMapGen.cpp118 static cl::extrahelp CommonHelp(CommonOptionsParser::HelpMessage);
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/tool/
H A DClangTidyMain.cpp35 static cl::extrahelp CommonHelp(CommonOptionsParser::HelpMessage);
36 static cl::extrahelp ClangTidyHelp(R"(
/llvm-project-15.0.7/clang-tools-extra/clang-doc/tool/
H A DClangDocMain.cpp52 static llvm::cl::extrahelp CommonHelp(CommonOptionsParser::HelpMessage);
/llvm-project-15.0.7/clang/tools/arcmt-test/
H A Darcmt-test.cpp58 static llvm::cl::extrahelp extraHelp(
/llvm-project-15.0.7/clang/tools/c-index-test/
H A Dcore_main.cpp55 static cl::extrahelp MoreHelp(
/llvm-project-15.0.7/llvm/docs/
H A DCommandLine.rst1477 .. _cl::extrahelp:
1479 The ``cl::extrahelp`` class
1482 The ``cl::extrahelp`` class is a nontemplated class that allows extra help text
1488 struct extrahelp;
1491 To use the extrahelp, simply construct one with a ``const char*`` parameter to
1493 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");
/llvm-project-15.0.7/llvm/utils/FileCheck/
H A DFileCheck.cpp30 static cl::extrahelp FileCheckOptsEnv(
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DCommandLine.h1909 struct extrahelp {
1912 explicit extrahelp(StringRef help);
/llvm-project-15.0.7/llvm/tools/llvm-dwarfdump/
H A Dllvm-dwarfdump.cpp268 static cl::extrahelp
/llvm-project-15.0.7/llvm/lib/Support/
H A DCommandLine.cpp442 extrahelp::extrahelp(StringRef Help) : morehelp(Help) { in extrahelp() function in extrahelp