Searched refs:RawArgs (Results 1 – 9 of 9) sorted by relevance
/third_party/rust/crates/clap/clap_lex/tests/ |
D | parsed.rs | 5 let raw = clap_lex::RawArgs::new(["bin", "-"]); in to_long_stdio() 17 let raw = clap_lex::RawArgs::new(["bin", "--"]); in to_long_no_escape() 29 let raw = clap_lex::RawArgs::new(["bin", "--long"]); in to_long_no_value() 43 let raw = clap_lex::RawArgs::new(["bin", "--long="]); in to_long_with_empty_value() 57 let raw = clap_lex::RawArgs::new(["bin", "--long=hello"]); in to_long_with_value() 71 let raw = clap_lex::RawArgs::new(["bin", "-"]); in to_short_stdio() 83 let raw = clap_lex::RawArgs::new(["bin", "--"]); in to_short_escape() 95 let raw = clap_lex::RawArgs::new(["bin", "--long"]); in to_short_long() 107 let raw = clap_lex::RawArgs::new(["bin", "-short"]); in to_short() 121 let raw = clap_lex::RawArgs::new(["bin", "-10.0"]); in is_negative_number() [all …]
|
D | shorts.rs | 3 let raw = clap_lex::RawArgs::new(["bin", "-short"]); in iter() 15 let raw = clap_lex::RawArgs::new(["bin", "-short"]); in next_flag() 34 let raw = clap_lex::RawArgs::new(["bin", "-short"]); in next_value_os() 47 let raw = clap_lex::RawArgs::new(["bin", "-short"]); in next_flag_with_value() 61 let raw = clap_lex::RawArgs::new(["bin", "-short"]); in next_flag_with_no_value() 78 let raw = clap_lex::RawArgs::new(["bin", "-short"]); in advance_by_nothing() 92 let raw = clap_lex::RawArgs::new(["bin", "-short"]); in advance_by_something() 106 let raw = clap_lex::RawArgs::new(["bin", "-short"]); in advance_by_out_of_bounds() 120 let raw = clap_lex::RawArgs::new(["bin", "-hello"]); in is_not_empty() 131 let raw = clap_lex::RawArgs::new(["bin", "-hello"]); in is_partial_not_empty() [all …]
|
D | lexer.rs | 3 let mut raw = clap_lex::RawArgs::new(["bin", "a", "b", "c"]); in insert()
|
/third_party/rust/crates/clap/clap_lex/src/ |
D | lib.rs | 120 pub struct RawArgs { struct 124 impl RawArgs { impl 249 impl<I, T> From<I> for RawArgs implementation
|
/third_party/rust/crates/clap/clap_lex/ |
D | CHANGELOG.md | 20 - `RawArgs::insert` now takes owned values
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | Attributes.cpp | 1565 AttrBuilder &AttrBuilder::addAllocSizeAttrFromRawRepr(uint64_t RawArgs) { in addAllocSizeAttrFromRawRepr() argument 1567 assert(RawArgs && "Invalid allocsize arguments -- given allocsize(0, 0)"); in addAllocSizeAttrFromRawRepr() 1572 AllocSizeArgs = RawArgs; in addAllocSizeAttrFromRawRepr()
|
/third_party/rust/crates/clap/clap_complete/src/ |
D | dynamic.rs | 300 let raw_args = clap_lex::RawArgs::new(args.into_iter()); in complete()
|
/third_party/rust/crates/clap/src/parser/ |
D | parser.rs | 54 raw_args: &mut clap_lex::RawArgs, in get_matches_with() argument 679 raw_args: &mut clap_lex::RawArgs, in parse_subcommand() argument
|
/third_party/rust/crates/clap/src/builder/ |
D | command.rs | 663 let mut raw_args = clap_lex::RawArgs::new(itr.into_iter()); in try_get_matches_from_mut() 3783 raw_args: &mut clap_lex::RawArgs, in _do_parse() argument
|