Home
last modified time | relevance | path

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

/third_party/rust/crates/clap/clap_lex/src/
Dlib.rs298 pub fn is_escape(&self) -> bool { in is_escape() method
314 debug_assert!(self.is_escape()); in to_long()
330 debug_assert!(self.is_escape()); in to_long()
346 self.inner.as_ref().starts_with("--") && !self.is_escape() in is_long()
/third_party/rust/crates/clap/clap_lex/tests/
Dparsed.rs170 fn is_escape() { in is_escape() function
176 assert!(next.is_escape()); in is_escape()
186 assert!(!next.is_escape()); in is_not_escape()
/third_party/rust/crates/clap/clap_complete/src/
Ddynamic.rs339 } else if arg.is_escape() { in complete()
396 } else if arg.is_escape() || arg.is_stdio() || arg.is_empty() { in complete_arg()
/third_party/rust/crates/clap/src/parser/
Dparser.rs120 if arg_os.is_escape() { in get_matches_with()