Lines Matching full:exclude
8 Arg::new("exclude") in indices_mult_opts()
24 m.indices_of("exclude").unwrap().collect::<Vec<_>>(), in indices_mult_opts()
35 Arg::new("exclude") in index_mult_opts()
50 assert_eq!(m.index_of("exclude"), Some(2)); in index_mult_opts()
58 .arg(Arg::new("exclude").short('e').action(ArgAction::SetTrue)) in index_flag()
63 assert_eq!(m.index_of("exclude"), Some(1)); in index_flag()
71 .arg(Arg::new("exclude").short('e').action(ArgAction::SetTrue)) in index_flags()
76 assert_eq!(m.index_of("exclude"), Some(4)); in index_flags()
84 .arg(Arg::new("exclude").short('e').action(ArgAction::SetTrue)) in indices_mult_flags()
89 assert_eq!(m.indices_of("exclude").unwrap().collect::<Vec<_>>(), [4]); in indices_mult_flags()
97 .arg(Arg::new("exclude").short('e').action(ArgAction::SetTrue)) in indices_mult_flags_combined()
102 assert_eq!(m.indices_of("exclude").unwrap().collect::<Vec<_>>(), [4]); in indices_mult_flags_combined()
110 .arg(Arg::new("exclude").short('e').action(ArgAction::SetTrue)) in indices_mult_flags_opt_combined()
116 assert_eq!(m.indices_of("exclude").unwrap().collect::<Vec<_>>(), [4]); in indices_mult_flags_opt_combined()
125 .arg(Arg::new("exclude").short('e').action(ArgAction::SetTrue)) in indices_mult_flags_opt_combined_eq()
131 assert_eq!(m.indices_of("exclude").unwrap().collect::<Vec<_>>(), [4]); in indices_mult_flags_opt_combined_eq()