Lines Matching refs:sc_name
943 let (is_match, sc_name) = self.possible_subcommand(&arg_os); in get_matches_with()
947 sc_name in get_matches_with()
950 let sc_name = sc_name.expect(INTERNAL_ERROR_MSG); in get_matches_with() localVariable
951 if sc_name == "help" && self.is_set(AS::NeedsSubcommandHelp) { in get_matches_with()
954 subcmd_name = Some(sc_name.to_owned()); in get_matches_with()
1135 let sc_name = match arg_os.to_str() { in get_matches_with() localVariable
1162 name: sc_name, in get_matches_with()
1207 let sc_name = { in get_matches_with() localVariable
1215 self.parse_subcommand(&*sc_name, matcher, it)?; in get_matches_with()
1326 sc_name: &str, in parse_subcommand()
1352 .find(|s| s.p.meta.name == sc_name) in parse_subcommand()