Searched refs:ArgCursor (Results 1 – 3 of 3) sorted by relevance
/third_party/rust/crates/clap/clap_lex/src/ |
D | lib.rs | 177 pub fn cursor(&self) -> ArgCursor { in cursor() argument 178 ArgCursor::new() in cursor() 182 pub fn next(&self, cursor: &mut ArgCursor) -> Option<ParsedArg<'_>> { in next() 187 pub fn next_os(&self, cursor: &mut ArgCursor) -> Option<&OsStr> { in next_os() 194 pub fn peek(&self, cursor: &ArgCursor) -> Option<ParsedArg<'_>> { in peek() 199 pub fn peek_os(&self, cursor: &ArgCursor) -> Option<&OsStr> { in peek_os() 216 pub fn remaining(&self, cursor: &mut ArgCursor) -> impl Iterator<Item = &OsStr> { in remaining() 223 pub fn seek(&self, cursor: &mut ArgCursor, pos: SeekFrom) { in seek() argument 236 cursor: &ArgCursor, in insert() argument 246 pub fn is_end(&self, cursor: &ArgCursor) -> bool { in is_end() [all …]
|
/third_party/rust/crates/clap/src/parser/ |
D | parser.rs | 55 mut args_cursor: clap_lex::ArgCursor, in get_matches_with() argument 680 args_cursor: clap_lex::ArgCursor, in parse_subcommand() argument
|
/third_party/rust/crates/clap/src/builder/ |
D | command.rs | 3784 args_cursor: clap_lex::ArgCursor, in _do_parse() argument
|