Home
last modified time | relevance | path

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

/external/lldb/source/Interpreter/
DOptions.cpp423 PrintOption (const OptionDefinition &opt_def, in PrintOption() argument
430 const bool has_short_option = isprint8(opt_def.short_option) != 0; in PrintOption()
438 if (show_optional && !opt_def.required) in PrintOption()
442 strm.Printf ("-%c", opt_def.short_option); in PrintOption()
444 strm.Printf ("--%s", opt_def.long_option); in PrintOption()
445 switch (opt_def.option_has_arg) in PrintOption()
450 strm.Printf (" <%s>", CommandObject::GetArgumentName (opt_def.argument_type)); in PrintOption()
456 CommandObject::GetArgumentName (opt_def.argument_type)); in PrintOption()
459 if (show_optional && !opt_def.required) in PrintOption()