Lines Matching refs:new
5 let m = Command::new("ind")
8 Arg::new("exclude")
15 Arg::new("include")
32 let m = Command::new("ind")
35 Arg::new("exclude")
42 Arg::new("include")
56 let m = Command::new("ind")
58 .arg(Arg::new("exclude").short('e').action(ArgAction::SetTrue))
59 .arg(Arg::new("include").short('i').action(ArgAction::SetTrue))
69 let m = Command::new("ind")
71 .arg(Arg::new("exclude").short('e').action(ArgAction::SetTrue))
72 .arg(Arg::new("include").short('i').action(ArgAction::SetTrue))
82 let m = Command::new("ind")
84 .arg(Arg::new("exclude").short('e').action(ArgAction::SetTrue))
85 .arg(Arg::new("include").short('i').action(ArgAction::SetTrue))
95 let m = Command::new("ind")
97 .arg(Arg::new("exclude").short('e').action(ArgAction::SetTrue))
98 .arg(Arg::new("include").short('i').action(ArgAction::SetTrue))
108 let m = Command::new("ind")
110 .arg(Arg::new("exclude").short('e').action(ArgAction::SetTrue))
111 .arg(Arg::new("include").short('i').action(ArgAction::SetTrue))
112 .arg(Arg::new("option").short('o').action(ArgAction::Set))
123 let m = Command::new("ind")
125 .arg(Arg::new("exclude").short('e').action(ArgAction::SetTrue))
126 .arg(Arg::new("include").short('i').action(ArgAction::SetTrue))
127 .arg(Arg::new("option").short('o').action(ArgAction::Set))
138 let m = Command::new("myapp")
141 Arg::new("option")
157 let m = Command::new("myapp")
160 Arg::new("option")
172 let m = Command::new("myapp")
174 .arg(Arg::new("option").short('o').action(ArgAction::Append))
175 .arg(Arg::new("flag").short('f').action(ArgAction::SetTrue))