Home
last modified time | relevance | path

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

/third_party/rust/crates/clap/src/builder/
Darg_settings.rs125 assert!(m.is_hide_set()); in setting_bitor()
137 assert!(m.is_hide_set()); in unset_setting_bitor()
142 assert!(!m.is_hide_set(), "{:#?}", m); in unset_setting_bitor()
Dpossible_value.rs173 pub fn is_hide_set(&self) -> bool { in is_hide_set() method
Dvalue_parser.rs1050 .filter(|v| !v.is_hide_set()) in parse_ref()
1180 .filter(|v| !v.is_hide_set()) in parse()
Dcommand.rs3675 pub fn is_hide_set(&self) -> bool { in is_hide_set() method
4312 .hide(self.is_hide_set()) in _copy_subtree_for_help()
Darg.rs3998 pub fn is_hide_set(&self) -> bool { in is_hide_set() method
/third_party/rust/crates/clap/clap_mangen/src/
Drender.rs34 for opt in cmd.get_arguments().filter(|i| !i.is_hide_set()) { in synopsis()
90 let items: Vec<_> = cmd.get_arguments().filter(|i| !i.is_hide_set()).collect(); in options()
223 for sub in cmd.get_subcommands().filter(|s| !s.is_hide_set()) { in subcommands()
331 possibles.iter().filter(|pos| !pos.is_hide_set()).collect(); in get_possible_values()
Dlib.rs262 cmd.get_arguments().any(|i| !i.is_hide_set()) in app_has_arguments()
267 cmd.get_subcommands().any(|i| !i.is_hide_set()) in app_has_subcommands()
/third_party/rust/crates/clap/clap_complete/src/shells/
Dzsh.rs360 .any(|value| !value.is_hide_set() && value.get_help().is_some())
367 if value.is_hide_set() {
386 .filter(|pv| !pv.is_hide_set())
Dfish.rs168 .filter_map(|value| if value.is_hide_set() { in value_completion()
Dbash.rs207 .filter(|pv| !pv.is_hide_set()) in vals_for()
/third_party/rust/crates/clap/src/parser/
Dvalidator.rs47 .filter(|pv| !pv.is_hide_set()) in validate()
202 self.cmd.find(n).map_or(false, |a| !a.is_hide_set()) in build_conflict_err_usage()
448 self.cmd.find(n).map_or(false, |a| !a.is_hide_set()) in missing_required_error()
Dparser.rs800 !(a.is_hide_set() || required.contains(a.get_id())) in parse_long_arg()
1318 .filter(|pv| !pv.is_hide_set()) in verify_num_args()
1562 .filter(|n| self.cmd.find(n).map_or(true, |a| !a.is_hide_set())) in did_you_mean_error()
/third_party/rust/crates/clap/clap_complete_fig/src/
Dfig.rs104 if subcommand.is_hide_set() { in gen_fig_inner()
202 if option.is_hide_set() { in gen_options()
/third_party/rust/crates/clap/src/output/
Dusage.rs165 if f.is_hide_set() { in needs_options_tag()
266 if pos.is_hide_set() { in get_args()
Dhelp_template.rs641 for pv in possible_vals.iter().filter(|pv| !pv.is_hide_set()) { in help()
1006 if arg.is_hide_set() { in should_show_arg()
1015 !subcommand.is_hide_set() in should_show_subcommand()