Lines Matching refs:subcommand
835 for subcommand in cmd
837 .filter(|subcommand| should_show_subcommand(subcommand))
840 styled.literal(subcommand.get_name());
841 if let Some(short) = subcommand.get_short_flag() {
845 if let Some(long) = subcommand.get_long_flag() {
850 ord_v.push((subcommand.get_display_order(), styled, subcommand));
877 .filter(|&subcommand| should_show_subcommand(subcommand))
878 .any(|subcommand| {
879 let spec_vals = &self.sc_spec_vals(subcommand);
880 self.subcommand_next_line_help(subcommand, spec_vals, longest)
945 /// Writes subcommand to the wrapped stream.
1019 fn should_show_subcommand(subcommand: &Command) -> bool {
1020 !subcommand.is_hide_set()