Lines Matching defs:common
5 fn common() -> Command {
10 common().version("3.0")
14 common().long_version("3.0 (abcdefg)")
18 common().version("3.0").long_version("3.0 (abcdefg)")
27 let res = common().try_get_matches_from("foo -V".split(' '));
36 let res = common().try_get_matches_from("foo --version".split(' '));
113 let cmd = common();
127 let cmd = common();
288 let _res = common()
296 let _ = common().mut_arg("version", |v| v.short('z').action(ArgAction::SetTrue));
303 let _res = common()