Home
last modified time | relevance | path

Searched refs:help (Results 1 – 25 of 1247) sorted by relevance

12345678910>>...50

/openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/
H A Ddotest_args.py23 optstr, help=helpstr, action='store_true', **kwargs)
31 help="Print this help message and exit. Add '-v' for more detailed help.")
40help=textwrap.dedent('''Specify the architecture(s) to test. This option can be specified more tha…
41 … group.add_argument('-C', '--compiler', metavar='compiler', dest='compiler', help=textwrap.dedent(
44 …group.add_argument('--apple-sdk', metavar='apple_sdk', dest='apple_sdk', default="", help=textwrap…
46 group.add_argument('--libcxx-include-dir', help=textwrap.dedent(
48 group.add_argument('--libcxx-include-target-dir', help=textwrap.dedent(
50 group.add_argument('--libcxx-library-dir', help=textwrap.dedent(
56help=textwrap.dedent('''Specify the extra flags to be passed to the toolchain when building the in…
59 …group.add_argument('--dsymutil', metavar='dsymutil', dest='dsymutil', help=textwrap.dedent('Specif…
[all …]
/openbsd-src/gnu/llvm/llvm/utils/lit/lit/
H A Dcl_arguments.py23 help='File or path to include in the test suite')
32 help="Number of workers used for testing",
38 help="Prefix for 'lit' config files")
42 help="Add 'NAME' = 'VAL' to the user defined parameters",
50 help="Suppress no error output",
53 help="Reduce amount of output."
59 help="Show test output for failures",
64 help="Echo all commands as they are executed to stdout. In case of "
68 help="Display all commandlines and output",
72 help="Write test results to the provided path",
[all …]
/openbsd-src/gnu/llvm/clang/tools/scan-build-py/lib/libscanbuild/
H A Darguments.py157 help="""Extend existing compilation database with new entries.
163 dest='build', nargs=argparse.REMAINDER, help="""Command to run.""")
179 help="""Run the build commands first, intercept compiler
190 help="""The exit status of '%(prog)s' is the same as the executed
199 help="""Do not run static analyzer against files found in this
209 help="""Specifies the output directory for analyzer reports.
214 help="""Don't remove the build results directory even if no issues
219 help="""Specify the title used on generated HTML pages.
229 help="""Cause the results as a set of .plist files.""")
237 help="""Cause the results as a set of .html and .plist files.""")
[all …]
/openbsd-src/gnu/llvm/clang/utils/analyzer/
H A DSATest.py207 help="Add a new project for the analyzer testing.")
210 add_parser.add_argument("name", nargs=1, help="Name of the new project")
213 help="Build mode: 0 for single file project, "
218 help="Source type of the new project: "
225 help="Origin link for a git repository")
227 help="Git hash for a commit to checkout")
233 help="Build projects from the project map and compare results with "
237 help="0 to fail on runtime errors, 1 to fail "
243 help="Regenerate reference output.")
245 default=False, help="Call scan-build with "
[all …]
/openbsd-src/gnu/llvm/llvm/tools/llvm-cxxfilt/
H A DOpts.td3 class F<string letter, string help> : Flag<["-"], letter>, HelpText<help>;
4 class FF<string name, string help> : Flag<["--"], name>, HelpText<help>;
11 multiclass Eq<string name, string help> {
13 HelpText<help>;
17 def help : FF<"help", "Display this help">;
26 def : F<"h", "Alias for --help">, Alias<help>;
/openbsd-src/gnu/llvm/llvm/tools/llvm-strings/
H A DOpts.td3 class F<string letter, string help> : Flag<["-"], letter>, HelpText<help>;
4 class FF<string name, string help> : Flag<["--"], name>, HelpText<help>;
6 multiclass Eq<string name, string help> {
8 HelpText<help>;
14 def help : FF<"help", "Display this help">;
21 def : F<"h", "Alias for --help">, Alias<help>;
/openbsd-src/gnu/llvm/libcxx/utils/libcxx/test/
H A Dparams.py72 help="The target triple to compile the test suite for. This must be "
81 help="The version of the standard to compile the test suite with.",
90 help="Whether to build the test suite with Clang modules enabled.",
98 help="Whether to enable exceptions when compiling the test suite.",
105 help="Whether to enable RTTI when compiling the test suite.",
112 help="""The C++ Standard Library implementation being tested.
134 help="Whether to enable warnings when compiling the test suite.",
141 help="An optional sanitizer to enable when building and running the test suite.",
168 help="Whether to enable tests for experimental C++ Library features.",
183help="Whether to enable tests that take longer to run. This can be useful when running on a very s…
[all …]
/openbsd-src/usr.sbin/memconfig/
H A Dmemconfig.c68 static void help(const char *);
113 help(NULL); in main()
171 help("list"); in listfunc()
218 help("set"); in setfunc()
223 help("set"); in setfunc()
228 help("set"); in setfunc()
232 help("set"); in setfunc()
236 help("set"); in setfunc()
245 help("flags"); in setfunc()
251 help("flags"); in setfunc()
[all …]
/openbsd-src/sys/lib/libsa/
H A Dalloc.c139 char *help; in alloc() local
180 help = top; in alloc()
188 panic("heap full (0x%lx+%u)", help, size); in alloc()
190 *(unsigned *)help = ALIGN(size); in alloc()
192 printf("=%p\n", help + ALIGN(sizeof(unsigned))); in alloc()
194 return(help + ALIGN(sizeof(unsigned))); in alloc()
204 help = (char *)*f; in alloc()
207 printf("=%p (origsize %u)\n", help + ALIGN(sizeof(unsigned)), in alloc()
208 *(unsigned *)help); in alloc()
210 return(help + ALIGN(sizeof(unsigned))); in alloc()
/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBCommandInterpreter.cpp41 const char *help = nullptr, in CommandPluginInterfaceImplementation() argument
45 : CommandObjectParsed(interpreter, name, help, syntax, flags), in CommandPluginInterfaceImplementation()
541 const char *help) { in AddMultiwordCommand() argument
542 LLDB_INSTRUMENT_VA(this, name, help); in AddMultiwordCommand()
545 new CommandObjectMultiword(*m_opaque_ptr, name, help)); in AddMultiwordCommand()
554 const char *name, lldb::SBCommandPluginInterface *impl, const char *help) { in AddCommand() argument
555 LLDB_INSTRUMENT_VA(this, name, impl, help); in AddCommand()
557 return AddCommand(name, impl, help, /*syntax=*/nullptr, in AddCommand()
564 const char *help, const char *syntax) { in AddCommand() argument
565 LLDB_INSTRUMENT_VA(this, name, impl, help, syntax); in AddCommand()
[all …]
/openbsd-src/gnu/llvm/llvm/tools/llvm-size/
H A DOpts.td3 class F<string letter, string help> : Flag<["-"], letter>, HelpText<help>;
4 class FF<string name, string help> : Flag<["--"], name>, HelpText<help>;
6 multiclass Eq<string name, string help> {
8 HelpText<help>;
14 def help : FF<"help", "Display this help">;
28 def : F<"h", "Alias for --help">, Alias<help>;
/openbsd-src/gnu/llvm/llvm/utils/
H A Dprepare-code-coverage-artifact.py74 parser.add_argument('host_llvm_profdata', help='Path to llvm-profdata')
75 parser.add_argument('host_llvm_cov', help='Path to llvm-cov')
77 help='Path to the directory containing the raw profiles')
79 help='Path to the output directory for html reports')
81 help='Path to an instrumented binary')
83 help='Only merge raw profiles together, skip report '
86 help='Do not delete raw profiles', action='store_true')
88 help='Specify an existing indexed profile to use')
90 help='Emit a unified report for all binaries')
93 help='Restrict the reporting to the given source paths'
[all …]
/openbsd-src/gnu/llvm/llvm/tools/llvm-tli-checker/
H A DOpts.td3 class F<string name, string help> : Flag<["--"], name>, HelpText<help>;
4 multiclass Eq<string name, string metavar, string help> {
6 HelpText<help>, MetaVarName<metavar>;
10 def help : F<"help", "Display available options">;
11 def : Flag<["-"], "h">, HelpText<"Alias for --help">, Alias<help>;
/openbsd-src/gnu/llvm/lldb/examples/python/
H A Dprocess_events.py97 help="Enable verbose logging.",
106help='Breakpoint commands to create after the target has been created, the values will be sent to …
112 help='The architecture to use when creating the debug target.',
119help='Specify the platform to use when creating the debug target. Valid values include "localhost"…
128help='LLDB command interpreter commands to run once after the process has launched. This option ca…
137help='LLDB command interpreter commands to run each time the process stops. This option can be spe…
146help='LLDB command interpreter commands to run in case the process crashes. This option can be spe…
155help='LLDB command interpreter commands to run once after the process has exited. This option can …
162 help="Don't show threads when process stops.",
168help="Don't stop executing LLDB commands if the command returns an error. This applies to all of t…
[all …]
/openbsd-src/gnu/llvm/clang/utils/
H A DFuzzTest203 parser.add_option("-v", "--verbose", help="Show more output",
205 parser.add_option("-s", "--succinct", help="Reduce amount of output",
209 group.add_option("", "--expected-exit-code", help="Set expected exit code",
213 help="Set additional expected exit code",
217 help="Capture test logs to an output directory",
221 help="Log all outputs (not just failures)",
227 help="Add an input file to fuzz",
230 help="Add a list of inputs files to fuzz (one per line)",
236 help="Characters to insert/replace",
239 action="append", help="Add a replacement string to use",
[all …]
/openbsd-src/sys/arch/sparc64/stand/ofwboot/
H A Dalloc.c101 char *help; in alloc()
146 help = OF_claim(0, size, PAGE_SIZE); in alloc()
147 if (help == (char *)-1) in alloc()
150 f = (struct ml *)help; in alloc()
154 (u_long)(help + OVERHEAD), f->size); in alloc()
167 help = (char *)f; in alloc()
169 printf("=%lx (origsize %u)\n", (u_long)(help + OVERHEAD), f->size); in alloc()
174 return (help + OVERHEAD); in free()
99 char *help; alloc() local
/openbsd-src/gnu/gcc/gcc/
H A Dopts.c127 static void wrap_help (const char *help, const char *item, unsigned int);
1267 const char *help = compiler_params[i].help; in print_param_help() local
1270 if (help == NULL || *help == '\0') in print_param_help()
1271 help = undocumented_msg; in print_param_help()
1274 help = _(help); in print_param_help()
1276 wrap_help (help, param, strlen (param)); in print_param_help()
1288 const char *help, *opt, *tab; in print_filtered_help() local
1343 help = cl_options[i].help; in print_filtered_help()
1344 if (!help) in print_filtered_help()
1345 help = undocumented_msg; in print_filtered_help()
[all …]
/openbsd-src/gnu/llvm/llvm/utils/Misc/
H A Dzkill145 help="Name of the signal to use (default=%default)",
149 help="List known signal names",
153 help="Only print the actions that would be taken",
156 help="Print more verbose output",
159 help="Enable debugging output",
162 help="Perform the specified commands, even if it seems like a bad idea",
168 help="Kill processes whose name matches the given regexp",
171 help="Kill processes whose executable matches the given regexp",
174 help="Kill processes whose user matches the given regexp",
177 help="Kill processes with CPU usage >= PCT",
[all …]
/openbsd-src/gnu/llvm/llvm/tools/llvm-ifs/
H A DOpts.td3 class F<string letter, string help> : Flag<["-"], letter>, HelpText<help>;
4 class FF<string name, string help> : Flag<["--"], name>, HelpText<help>;
6 multiclass Eq<string name, string help> {
7 def NAME #_EQ : Joined<["--"], name #"=">, HelpText<help>;
15 def help : FF<"help", "Display this help">;
16 def : F<"h", "Alias for --help">, Alias<help>;
/openbsd-src/gnu/llvm/clang/tools/clang-format/
H A Dclang-format-diff.py43 help='apply edits to files instead of displaying a diff')
45 help='strip the smallest prefix containing P slashes')
47 help='custom pattern selecting file paths to reformat '
52 help='custom pattern selecting file paths to reformat '
55 help='let clang-format sort include blocks')
57 help='be more verbose, ineffective without -i')
59 help='formatting style to apply (LLVM, GNU, Google, Chromium, '
62 help='The name of the predefined style used as a'
67 help='location of binary to use for clang-format')
/openbsd-src/gnu/llvm/clang/utils/ABITest/
H A DABITestGen.py355 help="autogeneration mode (random or linear) [default %default]",
358 help="autogenerate COUNT functions according to MODE",
361 help="start autogeneration with the Nth function type [default %default]",
364 help="maximum index for random autogeneration [default %default]",
367 help="random number generator seed [default %default]",
370 help="use random value for initial random number generator seed",
373 help="add a test index to skip",
376 help="write output to FILE [default %default]",
379 help="write header file for output to FILE [default %default]",
382 help="write function tests to FILE [default %default]",
[all …]
/openbsd-src/sys/arch/macppc/stand/
H A Dalloc.c101 char *help; in alloc()
146 help = OF_claim(0, size, PAGE_SIZE); in alloc()
147 if (help == (char *)-1) in alloc()
150 f = (struct ml *)help; in alloc()
154 (u_long)(help + OVERHEAD), f->size); in alloc()
167 help = (char *)f; in alloc()
169 printf("=%lx (origsize %u)\n", (u_long)(help + OVERHEAD), f->size); in alloc()
174 return (help + OVERHEAD); in free()
99 char *help; alloc() local
/openbsd-src/sys/dev/wscons/
H A Dwsemul_vt100_subr.c53 int help; in wsemul_vt100_scrollup() local
59 help = edp->scrreg_nrows - n; in wsemul_vt100_scrollup()
60 if (help > 0) { in wsemul_vt100_scrollup()
63 edp->scrreg_startrow, help)); in wsemul_vt100_scrollup()
68 (edp->emulcookie, edp->scrreg_startrow + help, n, edp->bkgdattr)); in wsemul_vt100_scrollup()
73 if (help > 0) in wsemul_vt100_scrollup()
75 &edp->dblwid[edp->scrreg_startrow + n], help); in wsemul_vt100_scrollup()
76 memset(&edp->dblwid[edp->scrreg_startrow + help], 0, n); in wsemul_vt100_scrollup()
90 int help; in wsemul_vt100_scrolldown() local
96 help in wsemul_vt100_scrolldown()
230 int n, m, help, flags, fgcol, bgcol; wsemul_vt100_handle_csi() local
814 int help; vt100_selectattribute() local
[all...]
/openbsd-src/gnu/llvm/libcxx/utils/
H A Dsym_diff.py23 help='Only print symbol names',
27 help='Only print removed symbols',
30 help="Filter all symbols not related to the stdlib",
33 help="Exit with a non-zero status if any symbols "
38 help='The output file. stdout is used if not given',
44 help='The file containing the old symbol list or a library')
47 help='The file containing the new symbol list or a library')
/openbsd-src/gnu/llvm/llvm/tools/llvm-rc/
H A DOpts.td7 class S<string name, string help> :
8 Separate<["/", "-"], name>, HelpText<help>;
10 class JS<string name, string help> :
11 JoinedOrSeparate<["/", "-"], name>, HelpText<help>;
13 class F<string name, string help> : Flag<["/", "-"], name>, HelpText<help>;
34 def help : F<"?", "Display this help and exit.">;
35 def h : F<"H", "Display this help and exit.">, Alias<help>;

12345678910>>...50