Searched refs:opt_def (Results 1 – 1 of 1) sorted by relevance
351 static bool PrintOption(const OptionDefinition &opt_def, in PrintOption() argument354 if (display_type == eDisplayShortOption && !opt_def.HasShortOption()) in PrintOption()360 if (show_optional && !opt_def.required) in PrintOption()363 opt_def.HasShortOption() && display_type != eDisplayLongOption; in PrintOption()365 strm.Printf("-%c", opt_def.short_option); in PrintOption()367 strm.Printf("--%s", opt_def.long_option); in PrintOption()368 switch (opt_def.option_has_arg) { in PrintOption()372 strm.Printf(" <%s>", CommandObject::GetArgumentName(opt_def.argument_type)); in PrintOption()377 CommandObject::GetArgumentName(opt_def.argument_type)); in PrintOption()380 if (show_optional && !opt_def.required) in PrintOption()[all …]