Searched refs:to_long (Results 1 - 5 of 5) sorted by relevance
/third_party/rust/crates/clap/clap_lex/tests/ |
H A D | parsed.rs | 12 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/curl/lib/ |
H A D | getinfo.c | 198 long *to_long; in getinfo_long() member 261 lptr.to_long = param_longp; in getinfo_long() 265 lptr.to_long = param_longp; in getinfo_long()
|
/third_party/rust/crates/clap/clap_lex/src/ |
H A D | lib.rs | 65 //! } else if let Some((long, value)) = arg.to_long() { 312 pub fn to_long(&self) -> Option<(Result<&str, &RawOsStr>, Option<&RawOsStr>)> { in to_long() functions
|
/third_party/rust/crates/clap/clap_complete/src/ |
H A D | dynamic.rs | 341 } 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/src/parser/ |
H A D | parser.rs | 131 } else if let Some((long_arg, long_value)) = arg_os.to_long() { 146 unreachable!("`to_long` always has the flag specified")
|
Completed in 5 milliseconds