Home
last modified time | relevance | path

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

/third_party/rust/crates/clap/clap_complete/src/
Ddynamic.rs325 arg.to_value_os(), in complete()
326 arg.to_value_os().as_raw_bytes() in complete()
411 .map(|f| format!("{}{}", arg.to_value_os().to_str_lossy(), f).into()), in complete_arg()
/third_party/rust/crates/clap/src/parser/
Dparser.rs97 arg_os.to_value_os(), in get_matches_with()
98 arg_os.to_value_os().as_raw_bytes() in get_matches_with()
288 self.check_terminator(arg, arg_os.to_value_os()) in get_matches_with()
294 arg_values.push(arg_os.to_value_os().to_os_str().into_owned()); in get_matches_with()
403 if let Some(_parse_result) = self.check_terminator(arg, arg_os.to_value_os()) { in get_matches_with()
414 arg_values.push(arg_os.to_value_os().to_os_str().into_owned()); in get_matches_with()
648 next.to_value_os(), in is_new_arg()
/third_party/rust/crates/clap/clap_lex/src/
Dlib.rs376 pub fn to_value_os(&self) -> &RawOsStr { in to_value_os() method