Home
last modified time | relevance | path

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

/external/clang/tools/clang-check/
DClangCheck.cpp39 static cl::extrahelp CommonHelp(CommonOptionsParser::HelpMessage);
40 static cl::extrahelp MoreHelp(
/external/clang/docs/
DLibTooling.rst117 // Declares llvm::cl::extrahelp.
130 static cl::extrahelp CommonHelp(CommonOptionsParser::HelpMessage);
133 static cl::extrahelp MoreHelp("\nMore help text...");
DLibASTMatchersTutorial.rst133 // Declares llvm::cl::extrahelp.
146 static cl::extrahelp CommonHelp(CommonOptionsParser::HelpMessage);
149 static cl::extrahelp MoreHelp("\nMore help text...");
/external/clang/tools/arcmt-test/
Darcmt-test.cpp57 static llvm::cl::extrahelp extraHelp(
/external/llvm/docs/
DCommandLine.rst1467 .. _cl::extrahelp:
1469 The ``cl::extrahelp`` class
1472 The ``cl::extrahelp`` class is a nontemplated class that allows extra help text
1478 struct extrahelp;
1481 To use the extrahelp, simply construct one with a ``const char*`` parameter to
1483 bottom of the help message, verbatim. Note that multiple ``cl::extrahelp``
1485 additional help information, put all that help into a single ``cl::extrahelp``
1492 cl::extrahelp("\nADDITIONAL HELP:\n\n This is the extra help\n");
/external/llvm/tools/llvm-ar/
Dllvm-ar.cpp89 static cl::extrahelp MoreHelp(
/external/llvm/include/llvm/Support/
DCommandLine.h1625 struct extrahelp {
1627 explicit extrahelp(const char *help);
/external/llvm/lib/Support/
DCommandLine.cpp219 extrahelp::extrahelp(const char *Help) : morehelp(Help) { in extrahelp() function in extrahelp