Home
last modified time | relevance | path

Searched refs:next_value_os (Results 1 – 3 of 3) sorted by relevance

/third_party/rust/crates/clap/clap_lex/tests/
Dshorts.rs33 fn next_value_os() { in next_value_os() function
40 let actual = shorts.next_value_os().unwrap().to_str_lossy(); in next_value_os()
54 let actual = shorts.next_value_os().unwrap().to_str_lossy(); in next_flag_with_value()
73 assert_eq!(shorts.next_value_os(), None); in next_flag_with_no_value()
/third_party/rust/crates/clap/clap_lex/src/
Dlib.rs455 pub fn next_value_os(&mut self) -> Option<&'s RawOsStr> { in next_value_os() method
/third_party/rust/crates/clap/src/parser/
Dparser.rs940 let val = short_arg.clone().next_value_os().unwrap_or_default(); in parse_short_arg()