Lines Matching refs:Option
6 // Default value: LLDB_OPT_SET_ALL (Option allowed in all groups)
9 // Example: def foo : Option<"foo", "f">, Group<1>;
11 // Example: def foo : Option<"foo", "f">, Groups<[1,4,6]>;
13 // Example: def foo : Option<"foo", "f">, GroupRange<1, 4>;
20 // Example: def foo : Option<"foo", "f">, Required;
23 // Default value: not available (has to be defined in Option)
25 // - `Option` constructor: Already set by constructor.
26 // Example: def foo : Option<"long-option", "l">
31 // Default value: not available (has to be defined in Option)
33 // - `Option` constructor: Already set by constructor.
34 // Example: def foo : Option<"long-option", "l">
60 // Example: def foo : Option<"foo", "f">,
68 // Example: def foo : Option<"foo", "f">,
73 // Example: def foo : Option<"foo", "f">,
82 // Example: def foo : Option<"foo", "f">, OptionalArg<"Pid">;
86 // Example: def foo : Option<"foo", "f">, Arg<"Pid">;
93 // Example: def foo : Option<"foo", "f">,
102 // Example: def foo : Option<"foo", "f">, Desc<"does nothing.">;
106 class Option<string fullname, string shortname> {