Home | History | Annotate | Download | only in Interpreter

Lines Matching defs:options

23 #include "lldb/Interpreter/Options.h"
93 syntax_str.Printf (" <cmd-options>");
143 Options *
146 // By default commands don't have options unless this virtual function
158 // See if the subclass has options?
159 Options *options = GetOptions();
160 if (options != NULL)
163 options->NotifyOptionParsingStarting();
168 error = args.ParseOptions (*options);
174 error = options->NotifyOptionParsingFinished();
178 if (options->VerifyOptions (result))
192 options->GenerateOptionUsage (result.GetErrorStream(), this);
397 // Can we do anything generic with the options?
398 Options *cur_options = GetOptions();
928 // Emit the message about using ' -- ' between the end of the command options and the raw input
931 "\nIMPORTANT NOTE: Because this command takes 'raw' input, if you use any command options"
932 " you must use ' -- ' between the end of the command options and the beginning of the raw input.", 1);
938 // Also emit a warning about using "--" in case you are using a command that takes options and arguments.
940 "\nThis command takes options and free-form arguments. If your arguments resemble"
942 " the end of the command options and the beginning of the arguments.", 1);
1091 { eArgTypeAliasOptions, "options-for-aliased-command", CommandCompletions::eNoCompletion, { NULL, false }, "Command options to be used as part of an alias (abbreviation) definition. (See 'help commands alias' for more information.)" },
1098 { eArgTypeCommandName, "cmd-name", CommandCompletions::eNoCompletion, { NULL, false }, "A debugger command (may be multiple words), without any options or arguments." },
1101 { eArgTypeDisassemblyFlavor, "disassembly-flavor", CommandCompletions::eNoCompletion, { NULL, false }, "A disassembly flavor recognized by your disassembly plugin. Currently the only valid options are \"att\" and \"intel\" for Intel targets" },