Lines Matching +full:docs +full:- +full:llvm +full:- +full:man

1 include "llvm/Option/OptParser.td"
3 class F<string name>: Flag<["--", "-"], name>;
4 class S<string name>: Separate<["--", "-"], name>;
8 // Please keep this in sync with the man page in docs/man/lldb.rst
13 def attach_name: Separate<["--", "-"], "attach-name">,
17 def: Separate<["-"], "n">,
19 HelpText<"Alias for --attach-name">,
22 def wait_for: F<"wait-for">,
25 def: Flag<["-"], "w">,
27 HelpText<"Alias for --wait-for">,
30 def attach_pid: Separate<["--", "-"], "attach-pid">,
34 def: Separate<["-"], "p">,
36 HelpText<"Alias for --attach-pid">,
43 def python_path: F<"python-path">,
46 def: Flag<["-"], "P">,
48 HelpText<"Alias for --python-path">,
51 def print_script_interpreter_info: F<"print-script-interpreter-info">,
55 def script_language: Separate<["--", "-"], "script-language">,
57 HelpText<"Tells the debugger to use the specified scripting language for user-defined scripts.">,
59 def: Separate<["-"], "l">,
61 HelpText<"Alias for --script-language">,
67 def repl: Flag<["--", "-"], "repl">,
70 def: Flag<["-"], "r">,
72 HelpText<"Alias for --repl">,
74 def repl_: Joined<["--", "-"], "repl=">,
78 def: Joined<["-"], "r=">,
81 HelpText<"Alias for --repl=<flags>">,
84 def repl_language: Separate<["--", "-"], "repl-language">,
88 def: Separate<["-"], "R">,
90 HelpText<"Alias for --repl-language">,
97 def no_lldbinit: F<"no-lldbinit">,
100 def: Flag<["-"], "x">,
102 HelpText<"Alias for --no-lldbinit">,
104 def local_lldbinit: F<"local-lldbinit">,
105 …ger to parse the .lldbinit files in the current working directory, unless --no-lldbinit is passed.…
109 HelpText<"Tells the debugger to run the commands from -s, -S, -o & -O, and then quit.">,
111 def: Flag<["-"], "b">,
113 HelpText<"Alias for --batch">,
116 def source_quietly: F<"source-quietly">,
117 …HelpText<"Tells the debugger not to echo commands while sourcing files or one-line commands provid…
119 def: Flag<["-"], "Q">,
121 HelpText<"Alias for --source-quietly">,
124 def one_line_on_crash: Separate<["--", "-"], "one-line-on-crash">,
126 …HelpText<"When in batch mode, tells the debugger to run this one-line lldb command if the target c…
128 def: Separate<["-"], "k">,
130 HelpText<"Alias for --one-line-on-crash">,
133 def source_on_crash: Separate<["--", "-"], "source-on-crash">,
137 def: Separate<["-"], "K">,
139 HelpText<"Alias for --source-on-crash">,
142 def source: Separate<["--", "-"], "source">,
146 def: Separate<["-"], "s">,
148 HelpText<"Alias for --source">,
151 def source_before_file: Separate<["--", "-"], "source-before-file">,
155 def: Separate<["-"], "S">,
157 HelpText<"Alias for --source-before-file">,
160 def one_line: Separate<["--", "-"], "one-line">,
162 …HelpText<"Tells the debugger to execute this one-line lldb command after any file provided on the …
164 def: Separate<["-"], "o">,
166 HelpText<"Alias for --one-line">,
169 def one_line_before_file: Separate<["--", "-"], "one-line-before-file">,
171 …HelpText<"Tells the debugger to execute this one-line lldb command before any file provided on the…
173 def: Separate<["-"], "O">,
175 HelpText<"Alias for --one-line-before-file">,
182 def: Flag<["-"], "v">,
184 HelpText<"Alias for --version">;
188 def: Flag<["-"], "h">,
190 HelpText<"Alias for --help">;
192 def core: Separate<["--", "-"], "core">,
195 def: Separate<["-"], "c">,
197 HelpText<"Alias for --core">;
201 def: Flag<["-"], "e">,
203 HelpText<"Alias for --editor">;
205 def no_use_colors: F<"no-use-colors">,
207 def: Flag<["-"], "X">,
209 HelpText<"Alias for --no-use-color">;
211 def file: Separate<["--", "-"], "file">,
214 def: Separate<["-"], "f">,
216 HelpText<"Alias for --file">;
218 def arch: Separate<["--", "-"], "arch">,
221 def: Separate<["-"], "a">,
223 HelpText<"Alias for --arch">;
227 def: Flag<["-"], "d">,
229 HelpText<"Alias for --debug">;
231 def REM : R<["--"], "">;