Home
last modified time | relevance | path

Searched refs:to_short (Results 1 – 5 of 5) sorted by relevance

/third_party/rust/crates/clap/clap_lex/tests/
Dshorts.rs7 let shorts = next.to_short().unwrap(); in iter()
19 let mut shorts = next.to_short().unwrap(); in next_flag()
38 let mut shorts = next.to_short().unwrap(); in next_value_os()
51 let mut shorts = next.to_short().unwrap(); in next_flag_with_value()
65 let mut shorts = next.to_short().unwrap(); in next_flag_with_no_value()
82 let mut shorts = next.to_short().unwrap(); in advance_by_nothing()
96 let mut shorts = next.to_short().unwrap(); in advance_by_something()
110 let mut shorts = next.to_short().unwrap(); in advance_by_out_of_bounds()
124 let shorts = next.to_short().unwrap(); in is_not_empty()
135 let mut shorts = next.to_short().unwrap(); in is_partial_not_empty()
[all …]
Dparsed.rs78 assert!(next.to_short().is_none()); in to_short_stdio()
90 assert!(next.to_short().is_none()); in to_short_escape()
102 assert!(next.to_short().is_none()); in to_short_long()
106 fn to_short() { in to_short() function
114 let shorts = next.to_short().unwrap(); in to_short()
/third_party/rust/crates/clap/clap_lex/src/
Dlib.rs350 pub fn to_short(&self) -> Option<ShortFlags<'_>> { in to_short() method
/third_party/rust/crates/clap/clap_complete/src/
Ddynamic.rs342 } else if let Some(_short) = arg.to_short() { in complete()
/third_party/rust/crates/clap/src/parser/
Dparser.rs199 } else if let Some(short_arg) = arg_os.to_short() { in get_matches_with()