Searched defs:OptionDefinition (Results 1 – 1 of 1) sorted by relevance
103 struct OptionDefinition { struct104 uint32_t usage_mask; // Used to mark options that can be used together. If (1107 bool required; // This option is required (in the current usage level)108 const char *long_option; // Full name for this option.109 int short_option; // Single character for this option.110 int option_has_arg; // no_argument, required_argument or optional_argument111 OptionValidator *validator; // If non-NULL, option is valid iff113 OptionEnumValues enum_values; // If not empty, an array of enum values.114 uint32_t completion_type; // Cookie the option class can use to do define the116 lldb::CommandArgumentType argument_type; // Type of argument this option takes[all …]