Home
last modified time | relevance | path

Searched refs:to_long (Results 1 – 4 of 4) sorted by relevance

/third_party/rust/crates/clap/clap_lex/tests/
Dparsed.rs12 assert_eq!(next.to_long(), None); in to_long_stdio()
24 assert_eq!(next.to_long(), None); in to_long_no_escape()
36 let (key, value) = next.to_long().unwrap(); in to_long_no_value()
50 let (key, value) = next.to_long().unwrap(); in to_long_with_empty_value()
64 let (key, value) = next.to_long().unwrap(); in to_long_with_value()
/third_party/rust/crates/clap/clap_complete/src/
Ddynamic.rs341 } else if let Some(_long) = arg.to_long() { in complete()
372 if let Some((flag, value)) = arg.to_long() { in complete_arg()
/third_party/rust/crates/clap/clap_lex/src/
Dlib.rs310 pub fn to_long(&self) -> Option<(Result<&str, &RawOsStr>, Option<&RawOsStr>)> { in to_long() method
/third_party/rust/crates/clap/src/parser/
Dparser.rs131 } else if let Some((long_arg, long_value)) = arg_os.to_long() { in get_matches_with()